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

:root {
    --green: #8BC34A;
    --green-light: #CDDC39;
    --orange: #FF5722;
    --red: #E91E63;
    --pink: #FF6B9D;
    --blue: #2196F3;
    --dark: #1a1a1a;
    --beige: #F5F5DC;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

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

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Navbar */
.navbar {
    background: var(--beige);
    padding: 1rem 0;
    border-bottom: 2px solid var(--dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-weight: bold;
    line-height: 1.2;
}

.logo-text small {
    font-size: 0.8rem;
    font-weight: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.btn-entradas {
    background: var(--dark);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: var(--beige);
    padding: 4rem 0;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-bottom: 1rem;
    color: #333;
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.link-arrow {
    text-decoration: none;
    color: var(--dark);
    font-weight: bold;
}

.hero-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    height: 500px;
}

.hero-img-main, .hero-img-secondary {
    position: relative;
    overflow: hidden;
}

.hero-img-main {
    background: var(--green-light);
}

.hero-img-secondary {
    background: var(--orange);
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.img-overlay.green {
    background: linear-gradient(135deg, var(--green-light) 0%, transparent 100%);
}

.img-overlay.orange {
    background: linear-gradient(135deg, var(--orange) 0%, transparent 100%);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.hero-text-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.hero-text-overlay h2 {
    font-size: 4rem;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Section 2 */
.section-2 {
    background: var(--beige);
    padding: 0;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.col-image {
    position: relative;
    background: #87CEEB;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.overlay-text h2 {
    font-size: 5rem;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.col-content {
    background: var(--beige);
    padding: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.gallery-item.red {
    background: var(--red);
}

.gallery-item.green {
    background: var(--green);
}

.gallery-item.green-light {
    background: var(--green-light);
}

.gallery-item.pink {
    background: var(--pink);
    padding: 1rem;
}

.gallery-item.blue {
    background: var(--blue);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-item h3 {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.pattern-circle,
.pattern-diamond,
.pattern-gear,
.pattern-flower {
    width: 60px;
    height: 60px;
    border: 3px solid white;
}

.pattern-circle {
    border-radius: 50%;
}

.pattern-diamond {
    transform: rotate(45deg);
}

/* Section 3 */
.section-3 {
    background: var(--beige);
    padding: 4rem 0;
}

.grid-2-cols.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.col-content-text {
    padding: 3rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.icon-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.icon-item.green {
    background: var(--green);
}

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

.icon-item.green-light {
    background: var(--green-light);
}

.icon-item.red {
    background: var(--red);
}

.icon-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content-box p {
    margin-bottom: 1rem;
    color: #333;
}

.col-images-collage {
    padding: 2rem;
}

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

.collage-item {
    position: relative;
    overflow: hidden;
}

.collage-item.large {
    height: 300px;
}

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

.overlay.orange-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, transparent 50%);
}

.event-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--green);
    color: white;
    padding: 1.5rem;
    z-index: 2;
}

.event-badge p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-badge h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Section 4 */
.section-4 {
    background: var(--beige);
}

.banner-strip {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 200px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    color: white;
}

.banner-content.orange-red {
    background: var(--orange);
}

.banner-content.green {
    background: var(--green);
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: bold;
}

.final-content {
    padding: 4rem 0;
}

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

.final-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Section 5 */
.section-5 {
    background: var(--beige);
}

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

.green-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.green-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.green-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.nav-arrows {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.arrow-btn {
    background: var(--green-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.hexagon-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.pattern-footer {
    background: var(--green-light);
    padding: 2rem 0;
}

.pattern-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.pattern-icon {
    font-size: 2rem;
    color: var(--green);
}

/* Footer */
.footer {
    background: var(--beige);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.footer-logo p {
    margin-top: 2rem;
    line-height: 1.6;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    text-decoration: none;
    color: var(--dark);
}

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

.social-icons a {
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid,
    .grid-2-cols,
    .grid-2-cols.reverse,
    .green-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-strip {
        grid-template-columns: 1fr;
    }
    
    .final-images {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
}
