@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=Great+Vibes&display=swap');

:root {
    --color-primary: #322F31;
    --color-secondary: #5FA98B;
    --color-accent: #793863;
    --color-taupe: #D8D0CD;
    --color-bg: #FFFFFF;
    --color-bg-alt: #FBFBFA;
    --color-text: #322F31;
    --color-text-muted: #666;

    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accesibilidad: etiquetas solo para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Topbar */
.topbar {
    background: #f8f8f8;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
}

.topbar-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

/* Topbar social icons – official brand colors */
.topbar .social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar .topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.topbar .topbar-icon:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.topbar .topbar-icon-fb { background: #1877f2; }
.topbar .topbar-icon-wa { background: #25d366; }
.topbar .topbar-icon-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

/* Language switcher – premium pill style */
.topbar .lang-links {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(121, 56, 99, 0.2);
    border-radius: 999px;
    padding: 4px 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    gap: 0;
}
.topbar .lang-link {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-muted, #666);
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.topbar .lang-link:hover {
    color: var(--color-accent);
    background: rgba(121, 56, 99, 0.06);
}
.topbar .lang-link.is-active {
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(121, 56, 99, 0.35);
}
.topbar .lang-link.is-active:hover {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(121, 56, 99, 0.4);
}

/* Branding Section & Carousel */
.branding {
    padding: 3rem 0;
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.slide.active {
    opacity: 1;
}

.branding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.3);*/
    z-index: 1;
}

.branding-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.branding-box-wrapper {
    position: relative;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .branding {
        height: 480px;
    }

    .branding-box-wrapper {
        margin-top: 100px;
    }

    .logo-circle {
        width: 140px;
        height: 140px;
        top: -100px;
    }

    /* Text Scaling Storytelling */
    .branding.is-secondary .carousel-text.active h1,
    .branding.is-secondary .carousel-text.active h2 {
        font-size: 2.2rem !important;
        letter-spacing: 1px !important;
    }

    .branding.is-secondary .carousel-text.active p {
        font-size: 0.95rem !important;
        letter-spacing: 2px !important;
        margin-top: 0.5rem !important;
    }

    /* Text Scaling Heritage (Slide 1) */
    .wine-text,
    .branding-box h1.wine-text {
        font-size: 2rem !important;
    }

    .gray-text {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }

    .teal-text-tag {
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
    }

    .heritage-sep {
        margin: 1rem auto !important;
    }
}

.logo-circle {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 13px 8px rgba(0, 0, 0, 0.4);
    padding: 4px;
    position: absolute;
    top: -140px;
    /* Adjusted for 180px height to overlap halfway */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.8s ease;
    border: 1.6px solid rgba(255, 255, 255, 0.8);
}

.logo-circle img {
    max-height: 100%;
}

.branding-box {
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(5px);
    padding: 24px 40px 14px;
    /* Matches user specs: top 24, side 40, bottom 14 */
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    /* User spec: 514.362px */
    min-height: 147px;
    /* User spec: 146.8px */
    margin: 0 auto;
    transition: all 0.8s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1.6px solid rgba(255, 255, 255, 0.8);
    display: block;
    /* Keeping block for auto-margin centering, but user said inline-block */
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .8);
}

/* Visibility Control */
.carousel-text {
    display: none !important;
}

.carousel-text.active {
    display: block !important;
    animation: fadeInSlide 1s forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes revealSweep {
    0% {
        clip-path: inset(0 100% 0 0);
        transform: translateX(-20px);
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translateX(0);
    }
}

/* Slide 1: Heritage Colors (H1 para SEO) */
.wine-text,
.branding-box h1.wine-text {
    color: #793863;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.gray-text {
    color: #444;
    font-size: 1.6rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

.heritage-sep {
    height: 1px;
    background: #793863;
    margin: 1.5rem auto;
}

.teal-text-tag {
    color: #5FA98B;
    font-size: 1.3rem;
    letter-spacing: 5px;
    font-weight: 700;
}

/* Slides 2+: Modern Layout */
.branding.is-secondary .branding-box {
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 900px;
    border: none !important;
    text-shadow: none;
}

.branding.is-secondary .logo-circle {
    opacity: 0.1;
    transform: translateX(-50%) scale(0.55) translateY(-60px);
}

.branding.is-secondary .carousel-text.active h1,
.branding.is-secondary .carousel-text.active h2 {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: revealSweep 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.branding.is-secondary .carousel-text.active p {
    color: #FFFFFF;
    background: none;
    display: block;
    padding: 0;
    margin-top: 1rem;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: revealSweep 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
    animation-fill-mode: both;
}

/* Navigation */
.nav-bar {
    background: var(--color-taupe);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Botón hamburguesa: oculto en desktop */
.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: #5FA98B;
    outline: 2px solid white;
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-bar.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-bar.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-bar.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-wrap a {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-wrap a:hover,
.nav-wrap a:focus {
    background: #BBA19F !important;
    color: #FFFFFF !important;
}

.nav-wrap a.active {
    background: var(--color-primary);
    color: white;
}

/* Móvil: menú desplegable */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-wrap {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-bar.is-open .nav-wrap {
        display: flex;
    }

    .nav-wrap a {
        width: 100%;
        padding: 0.85rem 1rem;
        text-align: left;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .nav-inner {
        flex-wrap: wrap;
    }
}

/* Sections */
.quote-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.quote-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-accent);
    max-width: 800px;
    margin: 0 auto;
}

.quote-ref {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

.category-tiles {
    display: grid;
    gap: 2rem;
    margin: 2rem auto 0;
}

/* Home Page: Premium 2x2 Grid */
.category-tiles.is-home-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

/* Requirements/Packages: Professional 3-column Grid */
.category-tiles.is-package-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-tiles.is-package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .category-tiles.is-home-grid,
    .category-tiles.is-package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.tile-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tile-item a {
    display: block;
    height: 100%;
}

.tile-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.tile-item:hover img {
    transform: scale(1.1);
}

.tile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(50, 47, 49, 0.95), rgba(50, 47, 49, 0.7) 70%, transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tile-item:hover .tile-info {
    padding-bottom: 2rem;
}

.tile-info h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.tile-info span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.tile-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.tile-item:hover .tile-btn,
.tile-item:active .tile-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.tile-btn:hover {
    background: white;
    color: var(--color-accent);
}

.separator {
    margin: 3rem auto;
    text-align: center;
}

.separator img {
    height: 60px;
    display: block;
    margin: 0 auto;
}

/* Standardized Section Headers */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--color-secondary);
    margin-top: 0.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

/* Premium Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--color-accent);
    /* Updated to brand wine color */
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.service-item:hover .service-icon-wrap {
    background: var(--color-accent);
    /* Hover matches wine color */
    color: white;
    transform: rotateY(360deg);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    /* Updated to brand wine color */
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Emotional Storytelling & Gallery */
.emotional-section {
    padding: 6rem 0;
    background: #fdf5f8;
    /* Light blush/brand background */
    text-align: center;
}

.emotional-box {
    max-width: 900px;
    margin: 0 auto;
}

.emotional-box h3 {
    color: var(--color-secondary);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.emotional-box p {
    font-size: 1.15rem;
    color: #8da399;
    /* Muted teal/sage from original feel */
    line-height: 1.8;
}

/* Gallery Slider */
/* Gallery Slider Overlay */
.wedding-gallery-wrap {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    /* For absolute overlay */
}

.wedding-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wedding-img {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.gallery-overlay p {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* En celular: imágenes arriba y texto debajo para que no se tapen */
@media (max-width: 768px) {
    .wedding-gallery-wrap {
        display: flex;
        flex-direction: column;
    }

    .wedding-slider {
        order: 1;
        width: 100%;
    }

    .gallery-overlay {
        position: static;
        order: 2;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0 0 12px 12px;
    }

    .gallery-overlay p {
        font-size: 1rem;
    }
}

/* Quiero Casarme Promotion Section (Emotional Evolution) */
.casarme-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.casarme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.casarme-content {
    text-align: left;
    /* Emotional style but aligned for split */
}

.casarme-title {
    font-size: 2.8rem;
    color: var(--color-secondary);
    /* Emotional Teal */
    margin-bottom: 1.5rem;
    font-weight: 300;
    /* Thin weight like Emotional section */
    line-height: 1.2;
    text-transform: none;
    /* Removed uppercase for elegance */
}

.casarme-subtitle {
    font-size: 1.2rem;
    color: #8da399;
    /* Emotional Sage */
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.casarme-divider {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 2rem 0;
    opacity: 0.5;
}

.casarme-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.casarme-cta-box {
    background: #fdf5f8;
    /* Blush background match */
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(121, 56, 99, 0.05);
}

.casarme-explore {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.casarme-img {
    position: relative;
}

.casarme-img img {
    border-radius: 20px;
    box-shadow: -30px 30px 0 #F5F1F0;
    /* Offset shadow like Fortalezas but opposite side */
    width: 100%;
    transition: transform 0.6s ease;
}

.casarme-img:hover img {
    transform: translate(10px, -10px);
}

.casarme-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-casarme {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Standardized Buttons System */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-heading);
}

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

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

.btn-primary:hover {
    background: #4e8d74;
    /* Darker teal */
    box-shadow: 0 10px 20px rgba(95, 169, 139, 0.3);
}

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

.btn-accent:hover {
    background: #622d51;
    /* Darker wine */
    box-shadow: 0 10px 20px rgba(121, 56, 99, 0.3);
}

/* WhatsApp Brand Button */
.btn-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

.btn-solid {
    background: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}

.btn-solid:hover {
    background: #622d51;
    border-color: #622d51;
}

/* Nuestras Bodas Section Styles */
#nuestras-bodas {
    padding: 8rem 0;
    background: #ffffff;
}

.weddings-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.weddings-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.wedding-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: stretch;
    background: #fdf5f8;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    /* Stack main and details */
}

.wedding-slide .ws-main {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.wedding-slide .ws-image {
    width: 50%;
    height: 500px;
}

.wedding-slide .ws-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-slide .ws-content {
    width: 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wedding-slide h3 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.wedding-slide p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    font-style: italic;
}

.ws-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 4rem 4rem;
    background: rgba(255, 255, 255, 0.5);
}

.ws-detail-item {
    text-align: center;
}

.ws-detail-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ws-detail-item:hover img {
    transform: scale(1.05);
}

.ws-detail-item h4 {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent) !important;
    margin-bottom: 0 !important;
}

/* Responsive adjustments for details */
@media (max-width: 992px) {
    .ws-details {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .wedding-slide .ws-main {
        flex-direction: column;
    }

    .wedding-slide .ws-image,
    .wedding-slide .ws-content {
        width: 100%;
    }

    .wedding-slide .ws-image {
        height: 300px;
    }
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.weddings-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .weddings-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 2rem;
    }

    .weddings-cta .btn-secondary-outline {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
}

.slider-nav {
    background: white;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--color-accent);
    color: white;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(121, 56, 99, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 992px) {
    .wedding-slide {
        flex-direction: column !important;
    }

    .wedding-slide .ws-image,
    .wedding-slide .ws-content {
        width: 100%;
    }

    .wedding-slide .ws-image {
        height: 300px;
    }

    .wedding-slide .ws-content {
        padding: 3rem 2rem;
    }

    .wedding-slide h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .wedding-grid {
        grid-template-rows: repeat(2, 150px);
    }

    .featured-title {
        font-size: 1.8rem;
    }
}

/* Mega SEO Link Grid */
/* Footer Mega Links Integration */
.footer-mega-links {
    padding: 6rem 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.footer-bottom {
    padding: 3rem 0;
    background: #f7f7f7;
    border-top: 1px solid #eee;
}

.mega-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.mega-column h4 {
    color: var(--color-accent);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mega-links li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.mega-links a {
    color: #666;
}

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

footer {
    text-align: center;
}

/* Premium Fortalezas Section */
#fortalezas {
    padding: 8rem 0;
    background: #fdf5f8;
}

.fort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fort-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(121, 56, 99, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(121, 56, 99, 0.1);
    border-color: var(--color-accent);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--color-accent);
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(121, 56, 99, 0.2);
}

.fort-icon {
    width: 65px;
    height: 65px;
    background: #fdf5f8;
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.fort-card:hover .fort-icon {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.fort-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.fort-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {

    .category-tiles,
    .services-grid,
    .mega-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .fort-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fort-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .category-tiles,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .branding-box h2 {
        font-size: 1.5rem;
    }

    .branding {
        height: auto;
        padding: 5rem 0;
    }
}

@media (max-width: 600px) {
    .mega-grid-wrap {
        grid-template-columns: 1fr;
    }
}

/* Bio Section */
.bio-section {
    background: #322F31;
    color: white;
    padding: 8rem 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: flex-start;
}

.bio-img-wrap {
    position: relative;
}

.bio-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.bio-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-secondary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(95, 169, 139, 0.4);
    border: 5px solid #322F31;
}

.badge-year {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bio-header {
    margin-bottom: 3rem;
}

.bio-header .subtitle {
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.bio-header .title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.2;
}

.bio-story {
    margin-bottom: 4rem;
}

.history-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-taupe);
    margin-bottom: 1.5rem;
}

.bio-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bio-certifications h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--color-taupe);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cert-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cert-year {
    font-weight: 900;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.cert-text {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.btn-more-bio {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-more-bio:hover {
    background: white;
    color: #322F31;
    transform: translateY(-3px);
}

/* Responsive Bio */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .bio-img-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bio-header .title {
        font-size: 2.2rem;
    }

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

/* Contact Hub Styles */
.contact-hub {
    background: white;
    padding: 6rem 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}


.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: flex-start;
}

/* Sidebar: WhatsApp + Info */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.direct-contact-summary {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

/* Restoring/Adjusting Insta Contact Card */
.contact-sidebar .contact-card {
    background: var(--color-bg-alt);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(121, 56, 99, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Column 2: Form */
.premium-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-form .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: white;
    box-shadow: 0 5px 15px rgba(95, 169, 139, 0.1);
}

/* Specific styling for select */
.premium-form select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23793863' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

/* Captcha Styling */
.captcha-group {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px dashed #ddd;
    margin-bottom: 2rem;
}

.captcha-group label {
    font-weight: 700;
    color: var(--color-primary) !important;
}

/* Validation Styles */
.premium-form .was-validated input:invalid,
.premium-form .was-validated select:invalid,
.premium-form .was-validated textarea:invalid {
    border-color: #dc3545;
}

.premium-form .was-validated input:valid,
.premium-form .was-validated select:valid,
.premium-form .was-validated textarea:valid {
    border-color: #10b981;
}

/* Adjustment for Intl-tel-input */
.iti {
    width: 100%;
}

.iti__country-list {
    z-index: 10000;
}

.w-100 {
    width: 100%;
}

/* Column 3: Direct info */
.direct-contact h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.info-list {
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text);
}

.info-list i {
    color: var(--color-accent);
    width: 20px;
}

.seo-group .seo-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-link {
    font-weight: 700;
    color: var(--color-secondary);
    border-bottom: 1px solid transparent;
}

.seo-link:hover {
    border-bottom-color: var(--color-secondary);
}

/* Responsive Hub */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-hub {
        padding: 4rem 1.5rem;
    }

    .contact-sidebar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .premium-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }
}

/* Social Hub (Community) Section */
.social-hub {
    background: #fdf5f8;
    /* Soft brand-aligned background */
    padding: 8rem 0;
    border-top: 1px solid #eee;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.social-text h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.social-text p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
}

.social-icons-large {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-icons-large a {
    font-size: 2.5rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    color: var(--color-accent);
    transform: translateY(-5px);
}

.social-seo {
    border-top: 1px solid rgba(121, 56, 99, 0.1);
    padding-top: 3rem;
    max-width: 500px;
}

.social-seo h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.social-widget {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Responsive Social Hub */
@media (max-width: 1100px) {
    .social-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .social-text p {
        margin: 0 auto 3rem;
    }

    .social-icons-large {
        justify-content: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    /* Positioned above the Chatwoot button/bubble */
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-accent);
    /* Using the brand wine color */
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    /* High z-index to stay above other elements */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Custom Chat Launcher */
.chat-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: var(--color-accent);
    /* Using brand wine color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(121, 56, 99, 0.4);
    z-index: 9998;
    /* Just below Back to Top if necessary */
    animation: pulse-chat-button 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.chat-trigger:hover {
    animation: bounce-chat-button 0.6s ease;
    transform: scale(1.1);
    background: var(--color-secondary);
}

/* Badge "EN LÍNEA" */
.chat-trigger::before {
    /*content: "EN LÍNEA";
    position: absolute;
    top: -10px;
    right: -12px;
    background: #10b981;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    */
}

/* Punto verde pulsante de estado */
.chat-trigger::after {
    content: "";
    position: absolute;
    top: -6px;
    /*right: -8px;*/
    left: 0px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-chat-dot 2s infinite;
}

/* Animations */
@keyframes pulse-chat-button {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(121, 56, 99, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(121, 56, 99, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(121, 56, 99, 0.4);
    }
}

@keyframes bounce-chat-button {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes pulse-chat-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- PREMIUM DESIGN COMPONENTS --- */

/* Tabs Component */
.tabs-container {
    margin-bottom: 3rem;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-taupe);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(95, 169, 139, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: grid;
}

/* Timeline/Process Component */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary));
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-node {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-step:nth-child(even) .timeline-node {
    border-color: var(--color-secondary);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.timeline-content h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Floating WhatsApp Button */
/* Floating social: same height as chat, show/hide with back-to-top (scroll > 600) */
.floating-social-right {
    position: fixed;
    bottom: 25px;
    right: 105px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
.floating-social-right.visible {
    opacity: 1;
    visibility: visible;
}

.floating-social-right .float-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-social-right .float-social:hover {
    transform: scale(1.1);
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.25);
}

.floating-social-right .float-social-fb { background: #1877f2; }
.floating-social-right .float-social-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.floating-social-right .float-social-wa { background: #25d366; }

@media (max-width: 768px) {
    .floating-social-right {
        flex-direction: row;
        bottom: 25px;
        right: 95px;
    }
    .floating-social-right .float-social {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}@media (max-width: 768px) {
    .section-title.is-compact-mobile {
        line-height: 1.25 !important;
        font-size: 2.2rem !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
    }
}

/* Intro Section Responsive Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.intro-text-column {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.quick-contact-card {
    background: var(--color-bg-alt);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px dashed var(--color-taupe);
    text-align: center;
}

.quick-contact-card h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.quick-contact-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .quick-contact-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .intro-text-column {
        font-size: 1rem;
        text-align: center;
    }
}
