:root {
    --primary: #4ECDC4;
    --secondary: #FF6B6B;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #ECF0F1;
    --gray: #95A5A6;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --container-padding: clamp(16px, 4vw, 32px);
    --section-space: clamp(48px, 8vw, 88px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    min-width: 320px;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: calc(0.9rem + env(safe-area-inset-top)) 0 0.9rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    color: var(--white);
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 2vw, 2rem);
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO CON IMAGEN ===== */
.hero {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background: #111827;
}

.hero-image-container {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: min(56vh, 520px);
    object-fit: contain;
    object-position: center;
}

.hero-copy {
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: clamp(1.1rem, 2.5vw, 1.8rem) var(--container-padding) clamp(0.8rem, 1.8vw, 1.2rem);
    margin: 0 auto;
    max-width: 900px;
}

.hero-actions {
    padding: clamp(1rem, 2.2vw, 1.5rem) var(--container-padding) clamp(1.25rem, 2.8vw, 2rem);
    text-align: center;
}

.hero-title {
    font-size: clamp(1.55rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.08;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.8s ease-out;
}

.hero-title-break {
    display: inline;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.9vw, 1.1rem);
    max-width: min(100%, 740px);
    margin-inline: auto;
    margin-bottom: 0;
    line-height: 1.25;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    margin: 0 auto;
}

/* ===== BOTONES ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #45B3AA;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #FF5252;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ===== BOTONES FLOTANTES ===== */
.floating-buttons {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: calc(20px + env(safe-area-inset-right));
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.phone-btn {
    background: #FF6B6B;
    color: white;
}

.location-btn {
    background: #4ECDC4;
    color: white;
}

.contact-btn {
    background: #FFE66D;
    color: var(--dark);
}

/* ===== SECCIONES ===== */
section {
    padding: var(--section-space) 0;
}

.section-title {
    font-size: clamp(1.7rem, 5vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.12;
    color: var(--dark);
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    text-align: center;
    color: var(--gray);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    max-width: 720px;
}

/* ===== CARRUSEL ===== */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.carousel-slide img {
    width: 100%;
    height: clamp(220px, 38vw, 400px);
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* ===== PRODUCTOS ===== */
.productos {
    background: linear-gradient(135deg, #F8F9FA 0%, #ECF0F1 100%);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.producto-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.producto-imagen {
    position: relative;
    overflow: hidden;
    height: clamp(210px, 28vw, 250px);
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-imagen img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.producto-contenido {
    padding: 2rem;
}

.producto-contenido h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.producto-contenido p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.caracteristicas {
    list-style: none;
    margin-bottom: 1.5rem;
}

.caracteristicas li {
    padding: 0.5rem 0;
    color: var(--dark);
    font-weight: 500;
}

/* ===== GALERÍA ===== */
.galeria {
    background: var(--white);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    height: auto;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== REDES Y VIDEOS ===== */
.redes {
    background: linear-gradient(135deg, #FFF7ED 0%, #F8F9FA 100%);
}

.redes-layout {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.tiktok-preview {
    display: flex;
    justify-content: center;
}

.tiktok-phone {
    width: min(100%, 330px);
    min-height: clamp(460px, 58vw, 560px);
    padding: 16px;
    border-radius: 36px;
    background: #111827;
    box-shadow: var(--shadow-lg);
}

.tiktok-status {
    width: 84px;
    height: 8px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: #374151;
}

.tiktok-screen {
    height: clamp(400px, 52vw, 500px);
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(78, 205, 196, 0.95), rgba(255, 107, 107, 0.9)),
        url("https://via.placeholder.com/360x640?text=TikTok+%40anes.creations");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.8rem;
    overflow: hidden;
}

.tiktok-label {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tiktok-screen h3 {
    font-size: 1.8rem;
    line-height: 1.1;
}

.tiktok-screen p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0.5rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.video-card {
    min-width: 0;
}

.video-card video,
.video-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-card video {
    display: block;
    height: auto;
    background: #111827;
    object-fit: cover;
}

.video-placeholder {
    min-height: clamp(320px, 42vw, 430px);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 230, 109, 0.35), transparent 28%),
        linear-gradient(160deg, #2C3E50 0%, #4ECDC4 55%, #FF6B6B 100%);
    color: var(--white);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.video-placeholder::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.45);
    border-radius: calc(var(--radius) - 4px);
}

.play-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(6px);
}

.play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid var(--white);
}

.video-placeholder h3,
.video-placeholder p {
    position: relative;
    z-index: 1;
}

.video-placeholder h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.82);
}

/* ===== SERVICIOS ===== */
.servicios {
    background: linear-gradient(135deg, var(--primary) 0%, #45B3AA 100%);
}

.servicios .section-title {
    color: var(--white);
}

.servicios .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.servicio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.servicio-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.servicio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.servicio-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.servicio-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CONTACTO ===== */
.contacto {
    background: linear-gradient(135deg, #F8F9FA 0%, #ECF0F1 100%);
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.contacto-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.contacto-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.info-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--gray);
}

.info-item a {
    color: inherit;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary);
}

.redes-sociales h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===== NOTIFICACIONES ===== */
.notification {
    position: fixed;
    top: calc(20px + env(safe-area-inset-top));
    right: calc(20px + env(safe-area-inset-right));
    left: auto;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    animation: slideInRight 0.3s ease-out;
}

.notification.success {
    background: #27AE60;
}

.notification.error {
    background: #E74C3C;
}

.notification.info {
    background: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* ===== ANIMACIONES ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
}

.scroll-animate {
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
}

/* ===== RESPONSIVE ===== */
@media (hover: none) and (pointer: coarse) {
    .producto-card:hover,
    .servicio-card:hover,
    .social-icon:hover,
    .btn:hover,
    .float-btn:hover {
        transform: none;
    }

    .galeria-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
        align-items: flex-end;
        padding: 1rem;
    }

    .galeria-overlay p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
    }

    .redes-layout {
        grid-template-columns: 320px 1fr;
    }

    .videos-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .contacto-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .floating-buttons {
        flex-direction: row;
        bottom: calc(12px + env(safe-area-inset-bottom));
        right: calc(12px + env(safe-area-inset-right));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .hero-title-break {
        display: block;
    }

    .hero-subtitle {
        max-width: 330px;
        font-size: clamp(0.9rem, 3.8vw, 1rem);
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2rem);
    }

    .productos-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .redes-layout {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }

    .video-card {
        scroll-snap-align: start;
    }

    .tiktok-phone {
        min-height: 500px;
    }

    .tiktok-screen {
        height: 440px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .carousel-slide img {
        height: 250px;
    }

    .notification {
        left: var(--container-padding);
        right: var(--container-padding);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.35rem, 7vw, 1.65rem);
    }

    .hero-subtitle {
        max-width: 300px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.45rem, 8vw, 1.65rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .video-placeholder {
        min-height: 420px;
    }

    .tiktok-phone {
        min-height: 460px;
        border-radius: 28px;
    }

    .tiktok-screen {
        height: 400px;
        border-radius: 20px;
        padding: 1.4rem;
    }

    .tiktok-screen h3 {
        font-size: 1.45rem;
    }

    .navbar-brand h1 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contacto-wrapper {
        grid-template-columns: 1fr;
    }

    .contacto-form,
    .contacto-info {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .floating-buttons {
        bottom: calc(10px + env(safe-area-inset-bottom));
        right: calc(10px + env(safe-area-inset-right));
        gap: 8px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-slide img {
        height: 200px;
    }

    .producto-card {
        margin-bottom: 1rem;
    }

    section {
        padding: 40px 0;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .servicio-card {
        padding: 1.5rem;
    }

    .servicio-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 360px) {
    .navbar-brand h1 {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        padding-inline: 14px;
    }

    .producto-contenido,
    .contacto-form,
    .contacto-info,
    .servicio-card {
        padding: 1.2rem;
    }

    .float-btn {
        width: 42px;
        height: 42px;
    }
}
