:root {
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Caveat';
    
    --color-primary: #1a2533; /* Darker, sophisticated blue */
    --color-secondary: #4a90e2; /* Brighter, modern blue */
    --color-accent: #f5a623; /* Warm yellow/orange accent */
    --color-text: #4f4f4f; /* Softer black for text */
    --color-light-text: #f8f9fa; /* Light text for dark backgrounds */
    --color-background-light: #f8f9fa; /* Very light grey */
    --color-background-medium: #e9ecef; /* Light grey */
    --color-white: #ffffff;
    --color-success: #28a745;

    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    font-weight: 300; /* Lighter default weight */
}


.photo-container {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));max-width: 1200px;margin: 0 auto;border-radius: 8px;overflow: hidden;}.foto-prado {background-size: cover;transition: transform 0.3s ease;}.foto-prado:hover {transform: scale(1.05);z-index: 1;}.photo-container.rectangle .foto-prado {aspect-ratio: 4/3;}


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

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #1a25338c 0%, var(--color-secondary) 100%), url(images/mkt-bg.png);
    color: var(--color-light-text);
    padding: 60px 0; /* Adjusted padding, can fine-tune */
    /* min-height: 80vh; remove or adjust if stacking causes too much height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-content {
    display: flex;
    align-items: center; /* Vertically aligns the columns */
    gap: 40px; /* Space between text and video columns */
    flex-wrap: wrap; /* Allow columns to stack on smaller screens */
}

.hero-text-column {
    flex: 1; /* Allow text column to take available space */
    min-width: 300px; /* Minimum width before wrapping */
    padding-right: 20px; /* Optional: extra spacing if needed */
    text-align: left; /* Align text to the left in this column */
}

.hero-text-column .logos {
    /* Keep logos centered within the text column, or align left */
    justify-content: flex-start; /* Or center if preferred: justify-content: center; */
    margin-bottom: 25px;
}

.hero-content .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-text-column .logo {
    height: 60px; /* Slightly adjusted, fine-tune as needed */
    margin: 0 15px 0 0; /* Adjust margins for left alignment */
}
.hero-text-column .logos #logo-anp { /* Keep specific placeholder if needed */
    margin-left:0; /* If starting from very left */
}

.hero-text-column .hero-title {
    text-align: left; /* Ensure title is left-aligned */
    margin-bottom: 15px;
}

.hero-text-column .hero-subtitle {
    text-align: left; /* Ensure subtitle is left-aligned */
    max-width: 100%; /* Allow it to fill its column */
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}

.hero-text-column .primary-cta {
    margin-top: 20px; /* Adjust spacing for the button */
    /* To align button left if it was previously centered by a parent */
    display: inline-block; 
}


.hero-video-column {
    flex: 1; /* Allow video column to take available space */
    min-width: 300px; /* Minimum width before wrapping */
}

.hero-content .logo {
    height: 140px; /* Adjust as needed */
    margin: 0 20px;
    /* For placeholder. If using actual white/light logos, this might not be needed. */
    /* filter: brightness(0) invert(1); */
     /* Temporary style for placeholder */
    padding: 10px;
    border-radius: 5px;
    color: var(--color-light-text);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.hero-content .logo-separator {
    font-size: 2.5em;
    font-weight: 300;
    opacity: 0.7;
}

.hero-title {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 5vw, 2.8rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



.hero-section .primary-cta {
    margin-top: 40px; /* Or adjust as needed */
}
/* --- Hero Section Video --- */
.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden;
    max-width: 100%; /* Make it fill its column parent */
    margin: 0; /* Remove auto margins as flex handles positioning */
    border-radius: var(--border-radius); 
    box-shadow: var(--shadow-medium); 
    background-color: #000; 
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; 
}





/* --- General Section Styling --- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--secondary-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.section-title span {
    font-weight: 700;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.subsection-title {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

p {
    margin-bottom: 1.2em;
    font-size: 1.05rem;
}

ul {
    list-style: none; /* Reset list style for custom styling */
    padding-left: 0;
}

li {
    margin-bottom: 0.8em;
}

/* --- About Trupe Section --- */
#sobre-trupe {
    background-color: var(--color-white);
}

.trupe-intro {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.social-links-trupe {
    text-align: center;
    margin-bottom: 40px;
}

.social-icon {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-icon i {
    margin-right: 8px;
}
.social-icon:hover {
    color: var(--color-accent);
}

.trabalhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trabalho-card {
    background-color: var(--color-background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--color-secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trabalho-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trabalho-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.trabalho-card ul li {
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.trabalho-info {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    font-style: italic;
}

/* --- Achei no Prado Service Section --- */
.highlight-section {
    background-color: var(--color-background-medium);
}
.service-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.investment-details {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.investment-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.investment-details h3 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.investment-details .price {
    color: var(--color-accent);
    font-size: 2.2rem;
}

.investment-details ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center; /* For centered list items */
    text-align: left; /* Ensure text within li is left-aligned if needed */
}
.investment-details ul li i {
    color: var(--color-success);
    margin-right: 10px;
    font-size: 1.2rem;
}
.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* --- Call to Action Buttons --- */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-cta,
#achei-no-prado-servico .cta-button { /* Main CTA in hero and service section */
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}
.primary-cta:hover,
#achei-no-prado-servico .cta-button:hover {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}
.hero-section .primary-cta:hover { /* Specific hover for hero if needed dark text*/
    color: var(--color-light-text);
    border-color: var(--color-light-text);
}


/* --- Contact CTA Section --- */
.contact-cta-section {
    background-color: var(--color-white);
}
.contact-cta-section .cta-button {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}
.contact-cta-section .cta-button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.contact-info-footer {
    margin-top: 30px;
    font-size: 1.1rem;
}
.contact-info-footer p {
    margin-bottom: 5px;
}
.contact-info-footer i {
    margin-right: 10px;
    color: var(--color-secondary);
}


/* --- Footer --- */
footer {
    background-color: var(--color-primary);
    color: var(--color-light-text);
    opacity: 0.9;
    padding: 40px 0;
    font-size: 0.9rem;
}
.footer .container p {
    margin-bottom: 5px;
}
.text-center {
    text-align: center;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-content .logo {
        height: 60px;
    }
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
    .hero-text-column {
        text-align: center; /* Center text when stacked */
        padding-right: 0; /* Remove padding when stacked */
        order: 2; /* Optional: Place text below video when stacked */
    }
    .hero-text-column .logos {
        justify-content: center; /* Center logos when stacked */
    }
    .hero-text-column .hero-title,
    .hero-text-column .hero-subtitle {
        text-align: center; /* Center title/subtitle when stacked */
    }

    .hero-video-column {
        order: 2; /* Optional: Place video above text when stacked */
        width: 100%; /* Ensure video takes full width when stacked */
        max-width: 600px; /* Or desired max width for stacked video */
        margin: 0 auto 30px auto; /* Center video and add bottom margin */
    }
    .hero-section {
         padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    .hero-content .logo {
        margin: 10px 0;
    }
     .hero-content .logo-separator {
        display: none;
    }
    .trabalhos-grid, .service-features {
        grid-template-columns: 1fr; /* Stack on smaller screens */
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
         margin-bottom: 40px;
    }
    .investment-details ul li {
        justify-content: flex-start; /* Align list items left on mobile for readability */
    }
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
    .hero-video-wrapper {
        /* margin: 25px auto 30px auto; Remove if hero-video-column handles it */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .investment-details h3 {
        font-size: 1.5rem;
    }
    .investment-details .price {
        font-size: 1.8rem;
    }
}