/* CSS Variables - Mint / Fresh Palette */
:root {
    /* Original Colors (kept for reference or fallback) */
    --primary-color: #38B2AC;
    --secondary-color: #2C7A7B;

    /* Extracted Logo Colors */
    --color-orange: #fc4c01;
    --color-green: #1e7f41;
    --color-pink: #ffe5f9;
    --color-yellow: #fef964;
    --color-mint: #cdebab;
    --color-blue: #789bbf;
    /* "Azul Claro" logo */

    --bg-color: #F7FAFC;
    --surface-color: #FFFFFF;
    --text-color: #2D3748;
    --text-light: #718096;
    --font-main: 'Outfit', sans-serif;

    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
}

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

.highlight-text {
    color: var(--color-orange);
    /* Changed to Orange for better visibility on most backgrounds */
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(252, 76, 1, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Color Sections Utility Classes */
.bg-mint {
    background-color: var(--color-mint);
    color: var(--text-color);
}

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

.bg-orange h2,
.bg-orange p,
.bg-orange ul li,
.bg-orange a {
    color: white !important;
}

/* Neutral Utility Classes */
.bg-white {
    background-color: #ffffff;
    color: var(--text-color);
}

.bg-light-gray {
    background-color: #f8fafc;
    color: var(--text-color);
}

.bg-pale-blue {
    background-color: #f0f9ff;
    /* Very subtle blue */
    color: var(--text-color);
}

/* Previous colorful classes kept for reference or specific use if needed,
   but removed from primary flow to clean up style.css if desired.
   Keeping them for now in case user reverts. */
.bg-pink {
    background-color: var(--color-pink);
    color: var(--text-color);
}

.bg-blue {
    background-color: var(--color-blue);
    /* Check contrast, might need white text */
    color: white;
}

.bg-blue .section-subtitle,
.bg-blue p,
.bg-blue h2,
.bg-blue h3 {
    color: white !important;
}

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

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

.bg-green p,
.bg-green h2,
.bg-green h3,
.bg-green strong,
.bg-green span {
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--color-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(252, 76, 1, 0.4);
}

.btn-primary:hover {
    background-color: #e04300;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-color);
    margin-left: 1rem;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.brand-logo img {
    height: 70px;
    width: auto;
}

.nav-links a {
    margin-left: 2.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--color-orange);
}

.btn-nav {
    background-color: var(--text-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.btn-nav:hover {
    background-color: var(--color-orange);
    color: white !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 2rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    /* Applied via bg-mint class in HTML */
}

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

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-green);
    /* Contrast on Mint */
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    animation: morph 8s ease-in-out infinite;
    mix-blend-mode: multiply;
    /* Helps integrate image with bg */
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Marquee */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--text-color);
    color: white;
    padding: 1.5rem 0;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.05);
    margin: 4rem 0;
    border-top: 5px solid var(--color-yellow);
    border-bottom: 5px solid var(--color-pink);
}

.ticker {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 4rem;
    text-transform: uppercase;
    -webkit-text-stroke: 1px white;
    color: transparent;
    /* Outline effect */
}

.ticker-item:hover {
    color: var(--color-yellow);
    -webkit-text-stroke: 0px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Section Common */
.section {
    padding: 6rem 0;
}

/* About (Pink bg) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* About Pillars */
.about-pillars {
    list-style: none;
    margin-top: 2rem;
}

.about-pillars li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.pillar-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services (Blue bg -> Light Gray) */
.services-section {
    /* bg-light-gray applied in HTML. 
       Text needs to be visible by default. */
}

.section-subtitle {
    color: var(--text-light);
    /* Changed from white/transparent to text-light */
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    /* Changed from transparent/blur to white for better contrast on light gray */
    padding: 3rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    /* Dark text by default */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card p {
    color: var(--text-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Removed hover text color change as it's already dark */

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Packages (Yellow bg -> White) */
/* Reusing services grid but with different colors */

/* Reviews (Green bg -> Pale Blue) */
.review-item {
    background: white;
    /* White card on Pale Blue bg */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    text-align: left;
    color: var(--text-color);
}

.review-item p {
    color: var(--text-color);
}

.review-item span {
    color: var(--text-light);
}

/* Contact (Orange bg) */
.contact-box {
    background-color: white;
    color: var(--text-color);
    border-radius: 40px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-text h2 {
    color: var(--text-color) !important;
    /* Override white text from bg-orange parent check if needed, but box is white */
}

.contact-text p {
    color: var(--text-light) !important;
}

.contact-text a {
    color: var(--color-orange) !important;
}

.contact-info-list li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f0f4f8;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background: white;
}

/* Footer - VISTOSO */
.footer {
    background-color: #111;
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--color-mint);
    transform: skewY(-2deg);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-top: none;
}

.footer-brand {
    text-align: left;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    height: 100px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.footer-brand p {
    font-size: 1.2rem;
    color: #888;
    max-width: 300px;
}

.footer-links-big {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links-big a {
    font-size: 2.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #555;
    text-transform: uppercase;
    transition: all 0.3s;
}

.footer-links-big a:hover {
    color: var(--color-yellow);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(254, 249, 100, 0.5);
    transform: translateX(-10px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--color-pink);
    color: #111;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-grid,
    .about-grid,
    .contact-box,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .contact-box {
        padding: 2rem;
    }

    .footer-links-big {
        justify-content: flex-start;
    }

    .footer-links-big a {
        font-size: 2rem;
    }
}