/* Minimalist Flat Design - Custom Properties */
:root {
    --primary-color: #e63946;
    --primary-dark: #d00000;
    --primary-light: #f07470;
    --secondary-color: #457b9d;
    --secondary-dark: #1d3557;
    --accent-color: #f9c74f;
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --text-dark: #212529;
    --background-light: #f8f9fa;
    --background-alt: #edf2f4;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #343a40;
    --gray-medium: #6c757d;
    --gray-light: #e9ecef;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.25s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* General styles - Minimal and Clean */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
    font-family: var(--font-secondary);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Simplified highlight effect */
.highlight {
    position: relative;
    padding: 0 0.25rem;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    background-color: var(--accent-color);
    opacity: 0.4;
    z-index: -1;
}

/* Minimal Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-light);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Clean navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-icon {
    margin-right: 0.3rem;
    font-size: 0.9rem;
    color: var (--secondary-color);
}

nav ul li a {
    position: relative;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Simplified Hero Section */
#hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Clean CTA button */
.cta-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Minimal Manifesto Section */
#manifesto {
    background-color: var(--white);
}

#manifesto h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Clean Stats */
.manifesto-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.stat:hover {
    background-color: var(--gray-light);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1;
    font-family: var(--font-primary);
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Alternative sections */
.section-alt {
    background-color: var(--background-alt);
}

/* Clean Initiatives section */
#initiatives h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
}

.iniciativas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.iniciativa-card {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.iniciativa-card:hover {
    border-color: var(--primary-color);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.icon-large {
    font-size: 2.5rem;
    color: var(--white);
}

.iniciativa-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.iniciativa-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Clean Companies section */
#companies {
    text-align: center;
    padding: 6rem 5% 7rem;
    background-color: var(--white);
}

#companies h2 {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destino-card {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-md);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.card-overlay {
    padding: 2.5rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.destino-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.destino-card p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

.destino-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Clean Testimonials section */
#testimonios {
    text-align: center;
}

#testimonios h2 {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
}

.testimonios-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    max-width: 500px;
    position: relative;
    text-align: left;
    transition: var(--transition);
}

.testimonio:hover {
    border-color: var(--primary-color);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gray-light);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonio p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
}

.testimonio h4 {
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 1.1rem;
}

.testimonio h4 span {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    font-weight: normal;
}

/* Clean Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding: 0 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
}

.footer-logo p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-logo .social-icons {
    margin-top: 1.5rem;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-size: 1.2rem;
}

.footer-links h3::after, .footer-contact h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius-md);
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form input.input-error {
    border: 1px solid rgba(255, 100, 100, 0.5);
    background-color: rgba(255, 100, 100, 0.1);
}

.form-error {
    color: #ffaaaa;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: left;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Newsletter Success Message */
.newsletter-success {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.5s ease-in-out;
}

.newsletter-success i {
    color: var(--accent-color);
    font-size: 2.5rem;
}

.newsletter-success p {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background-color: rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

/* Subfooter for disclosure */
.subfooter {
    text-align: center;
    padding: 0.75rem 5%;
    background-color: rgba(0,0,0,0.3);
    font-size: 0.8rem;
    color: var(--gray-light);
    opacity: 0.7;
}

.subfooter p {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    section {
        padding: 5rem 5%;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 2rem;
        z-index: 999;
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    nav ul li {
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .manifesto-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 4rem 5%;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .destinos-grid, .iniciativas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonio h4 {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .destinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .iniciativas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Simplified clean styles for better performance */
.menu-toggle {
    display: none;
}
