/* Variables de colores y estilos */
:root {
    --rojo: #e63946;
    --rojo-oscuro: #d00000;
    --negro: #121212;
    --negro-claro: #1e1e1e;
    --gris-oscuro: #2d2d2d;
    --gris: #4a4a4a;
    --gris-claro: #f5f5f5;
    --blanco: #ffffff;
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
    --sombra: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transicion: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--negro);
    background-color: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--rojo);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicion);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-negro {
    background-color: var(--negro);
    color: var(--blanco);
}

.bg-gris {
    background-color: var(--gris-claro);
}

.bg-blanco {
    background-color: var(--blanco);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transicion);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-rojo {
    background-color: var(--rojo);
    color: var(--blanco);
}

.btn-rojo:hover {
    background-color: var(--rojo-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.btn-blanco {
    background-color: var(--blanco);
    color: var(--negro);
}

.btn-blanco:hover {
    background-color: var(--gris-claro);
    transform: translateY(-3px);
}

.btn-negro {
    background-color: var(--negro);
    color: var(--blanco);
}

.btn-negro:hover {
    background-color: var(--gris-oscuro);
    transform: translateY(-3px);
}

/* Animaciones personalizadas */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease forwards;
}

.animate-pulse-once {
    animation: pulse 0.5s ease;
}

.animate-rotate {
    animation: rotate 2s linear infinite;
}

.animate-slideInRight {
    animation: slideInFromRight 0.8s ease forwards;
}

.animate-slideInLeft {
    animation: slideInFromLeft 0.8s ease forwards;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transicion);
    animation: pulse-whatsapp 2s infinite, float 3s ease-in-out infinite 1s;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--negro);
    color: var(--blanco);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicion);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--negro);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header y Navegación */
header {
    background-color: var(--blanco);
    box-shadow: var(--sombra);
    position: fixed;
    width: 100%;
    top: -100px;
    z-index: 1000;
    transition: top 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease;
}

header.visible {
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--negro);
    transition: var(--transicion);
    position: relative;
    overflow: hidden;
}

.logo span {
    color: var(--rojo);
    position: relative;
    display: inline-block;
}

.logo span:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rojo);
    transition: width 0.3s ease;
}

.logo:hover span:after {
    width: 100%;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rojo);
    transition: var(--transicion);
}

nav a:hover {
    color: var(--rojo);
}

nav a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
}

.hero-text.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gris);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-text p.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.hero-image {
    flex: 1;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    position: relative;
}

.hero-image.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--sombra);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.servicio-card {
    background-color: var(--blanco);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--sombra);
    transition: var(--transicion);
    border-top: 5px solid var(--rojo);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.servicio-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(230, 57, 70, 0.1), transparent);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.servicio-card:hover:before {
    opacity: 1;
}

.servicio-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.servicio-icon {
    font-size: 2.5rem;
    color: var(--rojo);
    margin-bottom: 20px;
    transition: var(--transicion);
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Proceso */
.proceso-container {
    margin-top: 50px;
}

.proceso-pasos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.paso {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--blanco);
    border-radius: 10px;
    position: relative;
    box-shadow: var(--sombra);
    color: var(--negro);
    transition: var(--transicion);
    opacity: 0;
    transform: translateY(30px);
}

.paso.animate {
    opacity: 1;
    transform: translateY(0);
}

.paso:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.paso-numero {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--rojo);
    color: var(--blanco);
    border-radius: 50%;
    line-height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 3px solid var(--blanco);
    box-shadow: 0 0 0 3px var(--rojo);
    transition: var(--transicion);
}

.paso:hover .paso-numero {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--rojo-oscuro);
}

/* Testimonios */
.testimonios-container {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonios-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 300%; /* 3 testimonios = 300% */
}

.testimonio-card {
    width: 100%;
    flex-shrink: 0;
    background-color: var(--blanco);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--sombra);
    color: var(--negro);
    opacity: 0;
    transform: scale(0.9);
}

.testimonio-card.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonio-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonio-cliente {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cliente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gris-claro);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonio-card:hover .cliente-foto {
    transform: scale(1.1);
}

.cliente-info h4 {
    margin-bottom: 5px;
}

.cliente-info p {
    color: var(--gris);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gris);
    cursor: pointer;
    transition: var(--transicion);
    position: relative;
    overflow: hidden;
}

.slider-control:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--rojo);
    transition: left 0.3s ease;
}

.slider-control.active:before {
    left: 0;
}

.slider-control.active {
    transform: scale(1.2);
}

/* CTA */
.cta {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--blanco);
    opacity: 0;
    transform: translateY(30px);
}

.cta h2.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
}

.cta p.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.cta .btn {
    opacity: 0;
    transform: translateY(30px);
}

.cta .btn.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

/* Contacto */
.contacto-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contacto-info {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
}

.contacto-info.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.contacto-form {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
}

.contacto-form.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--rojo);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transicion);
}

.info-item:hover .info-icon {
    transform: rotate(15deg) scale(1.1);
    background-color: var(--rojo-oscuro);
}

.form-group {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.form-group.animate {
    opacity: 1;
    transform: translateY(0);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transicion);
}

.form-control:focus {
    outline: none;
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
    transform: translateY(-2px);
}

/* Mensajes de formulario */
.mensaje-exito {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    border: 1px solid #c3e6cb;
    animation: fadeInUp 0.5s ease;
}

.mensaje-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    border: 1px solid #f5c6cb;
    animation: fadeInUp 0.5s ease;
}

.loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--rojo);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
footer {
    background-color: var(--negro);
    color: var(--blanco);
    padding: 70px 0 30px;
    opacity: 0;
    transform: translateY(30px);
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    opacity: 0;
    transform: translateY(20px);
}

.footer-col.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--rojo);
    transition: width 0.3s ease;
}

.footer-col:hover h3:after {
    width: 80px;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a:hover {
    color: var(--rojo);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--negro-claro);
    color: var(--blanco);
    border-radius: 50%;
    transition: var(--transicion);
}

.social-links a:hover {
    background-color: var(--rojo);
    transform: translateY(-5px) rotate(10deg);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gris-oscuro);
    color: #aaa;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
}

.copyright.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

/* Partículas animadas para fondo */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contacto-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--blanco);
        box-shadow: var(--sombra);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transicion);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        animation: slideInFromTop 0.5s ease;
    }
    
    @keyframes slideInFromTop {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .proceso-pasos {
        flex-direction: column;
    }
    
    /* Botón de WhatsApp en móviles */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .testimonio-card {
        padding: 30px 20px;
    }
    
    /* Botón de WhatsApp en pantallas muy pequeñas */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
}