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

:root {
    --primary-color: #4FA3FF;
    --primary-dark: #2B7DDD;
    --primary-light: #E9F4FF;
    --secondary-color: #A7E1FF;
    --accent-color: #7DD181;
    --text-dark: #0F172A;
    --text-medium: #3C4A63;
    --text-light: #6B7A90;
    --bg-white: #ffffff;
    --bg-light: #F7FBFF;
    --bg-gray: #eef3fb;
    --border-color: #dce7f5;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(220, 231, 245, 0.8);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

.nav-link.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #5cc872 100%);
    color: white;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-primary:hover {
    background: linear-gradient(135deg, #5cc872 0%, #48b763 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(140deg, #f3f9ff 0%, #e6f3ff 35%, #f8fbff 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    padding: 2.5rem;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.title-line-1 {
    color: var(--text-dark);
}

.title-line-2 {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn {
    padding: 0.95rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #59c573 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5cc872 0%, #48b763 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}


.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.image-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-image {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    border: 8px solid white;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-decoration {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, #dff1ff, #bfe2ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    transform: scale(1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    transition: var(--transition);
    z-index: 10;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.card-content p {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
    margin: 0;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: #e8f4ff;
    color: var(--primary-dark);
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    letter-spacing: 0.01em;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Servicios Section */
.servicios {
    padding: 80px 0;
    background: #f8fbff;
}

.servicios-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.servicio-hero-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.servicio-hero-image {
    width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.servicio-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.servicio-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: white;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.servicio-hero-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.servicio-hero-body h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.servicio-hero-body p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.servicio-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    gap: 0.4rem;
}

.servicio-hero-list li {
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    gap: 0.4rem;
}

.servicio-hero-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: 700;
}

.servicio-hero-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.mini-badge {
    background: #e8f4ff;
    color: var(--primary-dark);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.servicios-grid.minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Hero Service Cards */
.servicio-card-hero {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.servicio-card-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 163, 255, 0.18);
    border-color: rgba(79, 163, 255, 0.3);
}

.card-hero-visual {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-icon {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: grid;
    place-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.servicio-card-hero:hover .hero-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
}

.hero-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.card-content {
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.card-content p {
    color: var(--text-medium);
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
}

.btn-card-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    align-self: flex-start;
}

.btn-card-light:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.25);
}

.servicios-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

/* Sobre Mí Section */
.sobre-mi {
    padding: 80px 0;
    background: #ffffff;
}

.sobre-mi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-mi-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sobre-mi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-mi-content .section-badge {
    margin-bottom: 1rem;
}

.sobre-mi-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sobre-mi-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sobre-mi-list {
    list-style: none;
}

.sobre-mi-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.sobre-mi-list svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Ubicaciones Section */
.ubicaciones {
    padding: 90px 0 70px;
    background: #ffffff;
}

.ubicaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.ubicacion-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.ubicacion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.ubicacion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ubicacion-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.ubicacion-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ubicacion-map {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ubicacion-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ubicacion-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
}

.ubicacion-detail svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.ubicacion-detail p {
    margin: 0;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* Comentarios Section */
.comentarios {
    padding: 90px 0 90px;
    background: #f8fbff;
}

.testimonios-slider {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    max-width: 980px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.comentario-card {
    background: white;
    padding: 1.6rem;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    max-width: 820px;
    margin: 0 auto;
}

.comentario-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.comentario-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.comentario-info {
    flex: 1;
}

.comentario-info h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comentario-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: -0.35rem;
    margin-bottom: 0.35rem;
}

.comentario-stars {
    display: flex;
    gap: 0.25rem;
}

.comentario-stars svg {
    width: 18px;
    height: 18px;
    color: #FFC107;
}

.comentario-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.comentario-servicio {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.slider-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: 0.45rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .testimonios-slider {
        padding: 1.25rem;
        overflow: hidden;
    }

    /* Simplificar slider para móvil - solo mostrar slide activo */
    .slider-track {
        display: block;
        transform: none !important;
    }

    .slide {
        display: none;
        width: 100%;
    }

    .slide.active {
        display: block;
        opacity: 1;
    }

    .comentario-card {
        padding: 1.2rem;
        max-width: 100%;
    }

    .comentario-header {
        gap: 0.75rem;
    }

    .comentario-avatar {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .comentario-info h4 {
        font-size: 1rem;
    }

    .comentario-meta {
        font-size: 0.85rem;
    }

    .comentario-stars svg {
        width: 16px;
        height: 16px;
    }

    .comentario-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .comentario-servicio {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    /* Controles del slider */
    .slider-controls {
        display: flex;
        margin-top: 1.25rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 100%);
    color: var(--text-dark);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* Responsive */
/* Tablets y pantallas medianas */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem;
    }

    /* Sección Servicios - Tablet */
    .servicio-hero-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }

    .servicio-hero-image {
        width: 100%;
        height: 250px;
        max-width: 500px;
        margin: 0 auto;
    }

    .servicios-grid.minimal {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }

    .servicio-image {
        height: 140px;
    }

    .servicio-card {
        padding: 1.3rem;
    }

    .servicio-card.featured {
        grid-column: span 1;
    }

    .sobre-mi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ubicaciones-grid {
        grid-template-columns: 1fr;
    }

    .comentarios-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Móviles y pantallas pequeñas */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .image-wrapper {
        width: 450px;
        height: 450px;
    }

    .circular-image {
        width: 350px;
        height: 350px;
    }

    .image-decoration {
        width: 200px;
        height: 200px;
        top: 30px;
        right: 30px;
        opacity: 0.2;
        z-index: -2;
    }

    .floating-card {
        padding: 1rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 0.75rem;
    }

    /* Sección Servicios - Móvil */
    .servicio-hero-card {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        gap: 1rem;
    }

    .servicio-hero-image {
        width: 100%;
        height: 200px;
    }

    .servicio-hero-body h3 {
        font-size: 1.3rem;
    }

    .servicio-hero-body p {
        font-size: 0.95rem;
    }

    .servicio-hero-list li {
        font-size: 0.85rem;
    }

    .servicios-grid.minimal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .servicio-card {
        padding: 1.2rem;
    }

    .servicio-image {
        height: 180px;
    }

    .servicio-card h3 {
        font-size: 1.1rem;
    }

    .servicio-card p {
        font-size: 0.9rem;
    }

    .servicios-chips {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .testimonios-slider {
        padding: 1.5rem;
    }

    .comentario-card {
        padding: 1.5rem;
    }

    .ubicacion-card {
        padding: 1.5rem;
    }

    .ubicaciones-grid {
        grid-template-columns: 1fr;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .image-wrapper {
        width: 360px;
        height: 360px;
    }

    .circular-image {
        width: 280px;
        height: 280px;
    }

    .image-decoration {
        width: 150px;
        height: 150px;
        top: 20px;
        right: 20px;
        opacity: 0.15;
        z-index: -3;
    }

    .floating-card {
        padding: 0.75rem;
    }

    .card-1 {
        top: 10%;
        left: -5%;
    }

    .card-2 {
        top: 50%;
        right: -10%;
    }

    .card-3 {
        bottom: 5%;
        left: 5%;
    }

    /* Sección Servicios - Móvil pequeño */
    .servicio-hero-card {
        padding: 1rem;
    }

    .servicio-hero-image {
        height: 170px;
    }

    .servicio-hero-body h3 {
        font-size: 1.2rem;
    }

    .servicio-hero-body p {
        font-size: 0.9rem;
    }

    .servicio-hero-list {
        gap: 0.3rem;
    }

    .servicio-hero-list li {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .mini-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .servicio-card {
        padding: 1rem;
    }

    .servicio-image {
        height: 150px;
    }

    .servicio-card h3 {
        font-size: 1rem;
    }

    .servicio-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-badge {
        font-size: 0.8rem;
    }

    .ubicacion-card {
        padding: 1.25rem;
    }

    .ubicacion-map iframe {
        height: 200px;
    }

    .comentario-card {
        padding: 1.25rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}