*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #c0392b;
    --red-dark: #96281b;
    --red-light: #e74c3c;
    --red-soft: #fdedec;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform .15s ease, opacity .15s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

@media (hover: none) {
    .cursor-follower { display: none; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .35s; }
.reveal:nth-child(6) { transition-delay: .4s; }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 80px;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,.06);
    padding: 2px 80px;
}

.nav-logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 65px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-800);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .3px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, .35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
    background: var(--gray-800);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: .3px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, .35);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.4);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,.5);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.15);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--red);
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,15,.82) 0%, rgba(30,10,10,.65) 50%, rgba(192,57,43,.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 120px 40px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 57, 43, .15);
    border: 1px solid rgba(192, 57, 43, .3);
    color: #ff8a80;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--red-light);
    font-style: italic;
}

.hero-content > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat strong {
    font-size: 2rem;
    color: var(--white);
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat span {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 4px;
    animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
}

.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 200px;
    border: 6px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    border-radius: var(--radius-sm);
    height: 260px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(192,57,43,.3);
}

.about-experience strong {
    display: block;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-experience span {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .85;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--red);
}

.about-content > p {
    color: var(--gray-600);
    font-size: 1.02rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--red-soft);
    color: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: .95rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.about-feature p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.services {
    padding: 60px 0;
    background: var(--gray-50);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 300px;
}

.bento-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.bento-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s ease;
}

.bento-tile:hover img {
    transform: scale(1.08);
    filter: brightness(.4);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0, 0.5) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.bento-tile:hover .bento-overlay {
    background: linear-gradient(to top, rgba(192,57,43,.85) 0%, rgba(192,57,43,.3) 60%, transparent 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: var(--white);
    transition: var(--transition);
}

.bento-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    opacity: .85;
    transition: var(--transition);
}

.bento-tile:hover .bento-content i {
    opacity: 1;
    transform: translateY(-4px);
}

.bento-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.bento-content p {
    font-size: .88rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .4s ease, max-height .4s ease, margin .4s ease;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.bento-tile:hover .bento-content p {
    opacity: .9;
    max-height: 60px;
    margin-top: 6px;
}

/* Guardia 24hs - special tile */
.bento-guardia {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.bento-guardia-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: subtleShift 20s ease-in-out infinite alternate;
}

@keyframes subtleShift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

.bento-guardia .bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 32px;
}

.bento-guardia .bento-content i {
    font-size: 2.2rem;
    opacity: 1;
}

.bento-guardia .bento-content h3 {
    font-size: 1.4rem;
}

.bento-guardia .bento-content p {
    opacity: .9;
    max-height: 60px;
    font-size: .92rem;
}

.bento-guardia:hover {
    box-shadow: 0 8px 40px rgba(192,57,43,.4);
}

.bento-guardia:hover .bento-guardia-bg {
    animation-duration: 4s;
}

/* Service Modal */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(.96);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

.service-modal-overlay.active .service-modal {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    color: var(--gray-700);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.service-modal-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.service-modal-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%);
}

.service-modal-badge {
    position: absolute;
    bottom: 8px;
    left: 32px;
    width: 56px;
    height: 56px;
    background: var(--red);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(192, 57, 43, .4);
    z-index: 2;
}

.service-modal-body {
    padding: 44px 32px 32px;
}

.service-modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gray-900);
    margin-bottom: 14px;
    font-weight: 700;
}

.service-modal-desc {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-modal-points {
    list-style: none;
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}

.service-modal-points li {
    font-size: .9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-modal-points li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--red);
    font-size: .85rem;
    flex-shrink: 0;
}

.service-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

.service-modal-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

.service-modal-btn i {
    font-size: 1.3rem;
}

/* Guardia modal: no image, banner style */
.service-modal-img.no-image {
    height: 120px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.service-modal-img.no-image .service-modal-img-overlay {
    display: none;
}

@media (max-width: 480px) {
    .service-modal {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }
    .service-modal-img {
        height: 160px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .service-modal-body {
        padding: 40px 20px 24px;
    }
    .service-modal-body h2 {
        font-size: 1.3rem;
    }
}

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255,255,255,.8);
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.specialties {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.specialties-marquee {
    margin-bottom: 60px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.specialty-pill {
    padding: 12px 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.specialty-pill:hover {
    background: var(--red-soft);
    border-color: var(--red);
    color: var(--red);
}

.specialty-pill i {
    color: var(--red);
    font-size: .85rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.specialty-card {
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-soft) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

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

.specialty-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.spec-number {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

.specialty-card i {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
    position: relative;
}

.specialty-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
}

.specialty-card p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
}

.booking {
    padding: 120px 0;
    background: var(--gray-50);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.booking-info h2 span { color: var(--red); }

.booking-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .92rem;
    color: var(--gray-700);
    font-weight: 500;
}

.benefit i {
    color: var(--red);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.booking-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .1);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--red-light);
    background: var(--red-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form button {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    margin-top: 16px;
    background: #e8f5e9;
    border-radius: var(--radius-md);
}

.form-success.show {
    display: block;
    animation: fadeInUp .5s ease;
}

.form-success i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.form-success p {
    color: #2e7d32;
    font-weight: 500;
}

.booking-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    width: 100%;
}

.whatsapp-icon-big {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, .3);
}

.whatsapp-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.whatsapp-box > p {
    color: var(--gray-600);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.whatsapp-box .btn {
    font-size: 1rem;
}

.whatsapp-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .85rem;
    color: var(--gray-500);
}

.whatsapp-hours i {
    color: var(--red);
}

.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
}

.testimonial-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: .9rem;
}

.testimonial-card > p {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .88rem;
}

.testimonial-author strong {
    display: block;
    font-size: .92rem;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: .82rem;
    color: var(--gray-500);
}

.contact {
    padding: 120px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-info h2 span { color: var(--red); }

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--red-soft);
    color: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    font-size: .92rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-group li {
    margin-bottom: 10px;
    font-size: .88rem;
}

.footer-links-group a:hover {
    color: var(--red-light);
    padding-left: 6px;
}

.footer-links-group li i {
    color: var(--red);
    margin-right: 8px;
    font-size: .8rem;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .84rem;
}

.footer-credit a {
    color: var(--red-light);
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, .6); }
}

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

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .bento-tile[style*="span 2"] { grid-column: span 2 !important; }
    .bento-tile[style*="span 2"].bento-tall { grid-column: span 1 !important; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 50px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map { height: 300px; }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.96);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
        animation: fadeInUp .3s ease;
    }

    .nav-links.open a {
        color: var(--white);
        font-size: 1.3rem;
    }

    .navbar {
        padding: 14px 20px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .bento-grid {
        grid-template-columns:  1fr 1fr;
        grid-auto-rows: 200px;
        gap: 5px;
    }
    .bento-tile[style*="span 2"] { grid-column: span 1 !important; }
    .bento-tile[style*="span 2"].bento-tall { grid-row: span 1 !important; }
    .bento-tall { grid-row: span 1 !important; }
    .bento-guardia { grid-auto-rows: auto; }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 28px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about,
    .services,
    .specialties,
    .booking,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .hero-actions .btn {
        padding: 12px 24px;
        font-size: .88rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .booking-form-wrapper {
        padding: 24px 16px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .bento-content i{
        font-size: 1.7rem;
    }
    .bento-content h3 {
        font-size: 1rem;
    }
    .bento-content p {
        font-size: .9rem;
    }
    .bento-content{
        padding:  10px;
        gap: 0;
    }
}