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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2d2d2d url('img/header.png') repeat;
    background-size: auto 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.contact-btn {
    background: #FFB300;
    color: #1a1a1a;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Section */
.main-section {
    min-height: 130vh;
    background: url('img/poligono.png') 2% 20% / 250px auto no-repeat,
                url('img/poligono.png') 4% 75% / 350px auto no-repeat,
                url('img/poligono.png') 35% 25% / 280px auto no-repeat,
                url('img/bg_section_one.png') right -150px center / contain no-repeat,
                linear-gradient(180deg, #F18C46 0%, #F18C46 60%, #F5A74A 70%, #FEC500 80%, #FFD73D 87%, #FFE566 92%, #FFF2B3 96%, #FFFAE6 98%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 150px;
}


/* About Values Section - SOBRE NOSOTROS */
.about-values-section {
    padding: 0px 40px 80px;
    position: relative;
    overflow: visible;
    margin-top: -270px;
}

.about-values-section::before {
    content: '';
    position: absolute;
    top: 85%;
    left: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('img/poligono.png') no-repeat center;
    background-size: contain;
    opacity: 0.15;
    z-index: 9999;
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Manifiesto Container */
.manifesto-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}


.manifesto-content {
    padding: 60px;
    flex: 1;
    position: relative;
}

.manifesto-title {
    font-size: 2rem;
    color: #EC6440;
    font-weight: 900;
    margin-bottom: 25px;
    font-style: italic;
}

.manifesto-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.manifesto-highlight {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-top: 30px;
    font-style: italic;
}

.manifesto-highlight strong {
    font-weight: 900;
    font-style: normal;
}


.manifesto-image {
    width: 350px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.pesas-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Values Grid */
.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.value-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-card.featured {
    grid-column: span 2;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6347 0%, #FFB347 50%, #FFD700 100%);
}

.card-content {
    padding: 40px 30px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Decorative elements for values section */

/* Responsive adjustments */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card.featured {
        grid-column: span 1;
    }
    
    .value-card {
        min-height: 220px;
    }
    
    .card-content {
        padding: 30px 20px;
    }
    
    .manifesto-container {
        flex-direction: column;
    }
    
    .manifesto-content {
        padding: 40px 30px;
    }
    
    .manifesto-image {
        width: 100%;
        height: 300px;
        justify-content: center;
    }
    
    .pesas-image {
        height: 100%;
        width: auto;
    }
}

.hero-content {
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    transform: translateY(-50px);
}

.text-content {
    max-width: 600px;
}

.text-content h1 {
    font-size: 3.2rem;
    color: #1a1a1a;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.text-content .italic {
    font-style: italic;
    font-weight: 900;
    color: #2d2d2d;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-btn-filled,
.hero-btn-outline {
    display: inline-block;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.hero-btn-filled {
    background-color: #1a1a1a;
    color: white;
}

.hero-btn-filled:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline {
    background-color: transparent;
    color: #1a1a1a;
}

.hero-btn-outline:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-section::before,
.video-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url('img/poligono.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.2) saturate(1.5);
}

.video-section::before {
    top: -100px;
    right: -120px;
}

.video-section::after {
    bottom: -100px;
    left: -120px;
}

.video-placeholder {
    width: 100%;
    max-width: 600px;
    min-width: 280px;
    height: 400px;
    background: #D3D3D3;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #1a1a1a;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* About Section - Hexágonos */
.about-section {
    padding: 80px 40px 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 10%, #FFE8E0 20%, #FFD0C0 35%, #FFB8A0 45%, #FF9E80 52%, #FF8A6B 58%, #FF7A5A 62%, #FF7A5A 67%, #FF8A6B 72%, #FF9E80 77%, #FFB8A0 82%, #FFD0C0 87%, #FFE8E0 93%, #FFF8F5 100%);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}


/* About Section Layout */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.about-left {
    color: #1a1a1a;
}

.about-question {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.product-process h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: white;
}

.process-list {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.process-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: white;
    position: relative;
    padding-left: 30px;
}

.process-list li::before {
    content: "";
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='12,2 20,7 20,17 12,22 4,17 4,7' fill='none' stroke='%23FFD700' stroke-width='2'/%3E%3Ctext x='12' y='16' text-anchor='middle' fill='%23FFD700' font-size='14' font-weight='bold'%3E✓%3C/text%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.process-list {
    counter-reset: list-counter;
}

.highlight-text {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.highlight-text em {
    color: #E74C3C;
    font-weight: 700;
}

/* Molecular Structure */
.molecular-structure {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes molecularPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 140, 66, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(255, 140, 66, 0.8); }
}

/* Ambassadors Section */
.ambassadors-section {
    margin-top: 120px;
    padding: 100px 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-width: 100vw;
    box-sizing: border-box;
    background-color: rgba(30, 34, 35, 0.85);
}

.ambassadors-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.video-container::before {
    content: '';
    position: absolute;
    left: -300px;
    top: -150px;
    bottom: -150px;
    width: 800px;
    background: url('img/bg_section_one.png') no-repeat center center;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
    display: none;
}



.play-button {
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 480px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.play-button:hover {
    transform: scale(1.1);
}

.ambassadors-text {
    color: white;
}

.ambassadors-text .section-label {
    color: #FFD700;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.ambassadors-text h3 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ambassadors-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.ambassadors-text .highlight-text {
    color: white;
}

.ambassadors-text .highlight-text em {
    color: #FFD700;
    font-weight: 700;
}

.ambassadors-text p strong {
    font-weight: 700;
    color: #FFD700;
}

.ambassador-button {
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.ambassador-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, #FF7F00 0%, #FFC700 100%);
}

.hexagon-grid {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 600px;
}

/* SVG de líneas conectoras */
.hex-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hex-lines line {
    stroke: #FFB300;
    stroke-width: 3;
    opacity: 0.6;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Hexágonos principales */
.hex {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hex:hover {
    transform: translateY(-5px);
}

.hex-inner {
    background: linear-gradient(135deg, #FFD700 0%, #FFC300 50%, #FFB300 100%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hex:hover .hex-inner {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hex-icon {
    font-size: 28px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%);
}

.hex-text {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

/* Posiciones de hexágonos */
.hex-vision {
    width: 140px;
    height: 161px;
    top: 120px;
    left: 200px;
}

.hex-manifiesto {
    width: 180px;
    height: 207px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.hex-mision {
    width: 140px;
    height: 161px;
    top: 120px;
    right: 200px;
}

.hex-filosofia {
    width: 160px;
    height: 184px;
    bottom: 100px;
    left: 300px;
}

.hex-compromiso {
    width: 160px;
    height: 184px;
    bottom: 100px;
    right: 300px;
}

/* Hexágonos decorativos pequeños */
.hex-small {
    position: absolute;
    z-index: 2;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hex-coral {
    width: 60px;
    height: 69px;
    background: #FF6B6B;
    top: 300px;
    left: 100px;
}

.hex-teal {
    width: 80px;
    height: 92px;
    background: #4ECDC4;
    bottom: 50px;
    right: 100px;
}

.hex-black {
    width: 70px;
    height: 80px;
    background: #1a1a1a;
    bottom: 200px;
    right: 450px;
}

.hex-yellow-sm {
    width: 50px;
    height: 57px;
    background: #FFD700;
    top: 250px;
    right: 350px;
}

.hex-orange {
    width: 60px;
    height: 69px;
    background: #FF8C42;
    top: 150px;
    right: 150px;
}

.hex-pink {
    width: 40px;
    height: 46px;
    background: #FFB6C1;
    bottom: 250px;
    left: 450px;
}

/* Protocols Section */
.protocols-section {
    padding: 80px 40px;
    background: #FAFAFA;
    position: relative;
}

.protocols-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: #FFB300;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.protocols-text h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 900;
}

.protocols-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.validation-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

.validation-icon {
    flex-shrink: 0;
}

.validation-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.validation-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.download-section:hover::before {
    transform: translateX(100%);
}

.download-section p {
    font-size: 20px;
    color: white;
    margin: 0;
    font-weight: 700;
    max-width: 400px;
}

.download-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFC300 100%);
    color: #1a1a1a;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.6);
}

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

.btn-icon {
    font-size: 20px;
}

/* Protocols Image Section */
.protocols-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex-frame {
    position: relative;
    width: 400px;
    height: 460px;
    margin: 0 auto;
}

.hex-border-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hex-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

/* Decorative hexagons */
.hex-deco {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hex-yellow-lg {
    width: 150px;
    height: 173px;
    background: #FFD700;
    top: -30px;
    right: -40px;
    z-index: 1;
}

.hex-teal-sm {
    width: 80px;
    height: 92px;
    background: #4ECDC4;
    bottom: -20px;
    left: -30px;
    z-index: 1;
}

.hex-orange-md {
    width: 100px;
    height: 115px;
    background: #FF6B35;
    bottom: 100px;
    right: -50px;
    z-index: -1;
}

/* Product & Ambassadors Section */
.product-ambassadors-section {
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF8F0 0%, #FFE6D6 15%, #FFD4CC 25%, #FFB5A7 40%, #FF9999 55%, #FF8B7D 70%, #FF6B5A 85%, #E74C3C 100%);
    z-index: -1;
}

/* Product Protocols Section */
.product-protocols {
    padding: 100px 40px;
    position: relative;
}

.molecule-illustration {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.molecule-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD700 0%, #FFC300 70%, #FFB300 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.molecule-circle.medium-1 { animation-delay: 0.5s; }
.molecule-circle.medium-2 { animation-delay: 1s; }
.molecule-circle.small-1 { animation-delay: 1.5s; }
.molecule-circle.small-2 { animation-delay: 2s; }
.molecule-circle.small-3 { animation-delay: 2.5s; }

.molecule-circle.large {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.molecule-circle.medium-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 20%;
    background: rgba(255, 179, 0, 0.9);
}

.molecule-circle.medium-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 10%;
    background: rgba(255, 140, 0, 0.8);
}

.molecule-circle.small-1,
.molecule-circle.small-2,
.molecule-circle.small-3 {
    width: 30px;
    height: 30px;
    background: rgba(255, 165, 0, 0.7);
}

.molecule-circle.small-1 { top: 10%; left: 30%; }
.molecule-circle.small-2 { bottom: 20%; right: 30%; }
.molecule-circle.small-3 { top: 40%; right: 10%; }

.product-info {
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
    position: relative;
    z-index: 2;
}

.product-info h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.product-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-info ol {
    list-style: none;
    margin-bottom: 30px;
}

.product-info ol li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.product-info .emphasis {
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    color: #1a1a1a;
}

/* Ambassadors Section */

.ambassadors-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ambassadors-text .section-label {
    color: #FFB300;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ambassadors-text h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 700;
}



.ambassadors-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.ambassadors-text .italic {
    font-style: italic;
}

.cta-button-dark {
    background: #2d2d2d;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 25px;
}

.cta-button-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



/* ERGOCR Section */
.ergocr-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, 
        #FFF8F5 0%, 
        #FFFCFA 10%, 
        #FFFFFF 20%, 
        #FFFFFF 35%, 
        #FFFCFA 45%, 
        #FFF8F5 50%, 
        #F8F8F8 53%, 
        #F0F0F0 56%, 
        #E8E8E8 59%, 
        #E0E0E0 62%, 
        #D8D8D8 65%, 
        #D0D0D0 67%, 
        #C8C8C8 69%, 
        #C0C0C0 71%, 
        #B8B8B8 73%, 
        #B0B0B0 75%, 
        #A8A8A8 77%, 
        #A0A0A0 79%, 
        #989898 81%, 
        #909090 82%, 
        #888888 83%, 
        #808080 84%, 
        #787878 85%, 
        #707070 86%, 
        #686868 87%, 
        #606060 88%, 
        #585858 89%, 
        #505050 90%, 
        #484848 91%, 
        #404040 92%, 
        #383838 93%, 
        #303030 94%, 
        #2C2C2C 96%, 
        #2A2A2A 98%, 
        #2A2A2A 100%);
    position: relative;
    overflow: hidden;
}

.ergocr-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ergocr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ergocr-text .section-label {
    color: #E74C3C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.ergocr-text h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 900;
}

.ergocr-subtitle {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ergocr-subtitle em {
    font-style: italic;
}

.benefits-box {
    background-color: #313638;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.benefits-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.benefits-box ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.benefits-box li {
    padding: 6px 0 6px 35px;
    color: white;
    font-size: 15px;
    position: relative;
    margin-bottom: 8px;
}

.benefits-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='12,2 20,7 20,17 12,22 4,17 4,7' fill='none' stroke='%23FFD700' stroke-width='2'/%3E%3Ctext x='12' y='16' text-anchor='middle' fill='%23FFD700' font-size='14' font-weight='bold'%3E✓%3C/text%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefits-box p {
    font-size: 15px;
    color: white;
    line-height: 1.5;
}

.buy-button {
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    color: #1a1a1a;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    margin-top: 30px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
    background: linear-gradient(135deg, #FF7F00 0%, #FFC700 100%);
}

.ergocr-product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex-product-frame {
    position: absolute;
    width: 500px;
    height: 580px;
    z-index: 1;
}

.hex-product-frame svg {
    width: 100%;
    height: 100%;
}

.ergocr-product img {
    position: relative;
    z-index: 2;
    max-width: 500px;
    height: auto;
    margin-left: 50px;
}

/* Future Projects Section */
.future-projects-section {
    background: linear-gradient(180deg, #2a2a2a 0%, #2a2a2a 8%, #322828 18%, #3a2626 28%, #422424 33%, #4a2222 38%, #522020 43%, #5a1e1e 48%, #621c1c 53%, #6a1a1a 58%, #721818 63%, #7a1616 68%, #821414 71%, #8a1212 73%, #921010 75%, #9a0e0e 77%, #a20c0c 79%, #aa0000 81%, #ba0000 83%, #ca0000 85%, #da1100 87%, #ea2200 89%, #fa3300 91%, #ff4400 93%, #ff5500 94%, #ff6600 95%, #ff7700 97%, #ff8800 99%, #ff8c00 100%);
    position: relative;
    overflow: hidden;
}

/* First time using creatine */
.first-time-section {
    text-align: center;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.first-time-section h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.first-time-section p {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 25px;
    opacity: 0.9;
}

.protocol-button {
    background: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.protocol-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #333;
}

/* Projects Container */
.projects-container {
    padding: 100px 40px 40px;
    position: relative;
    z-index: 2;
}

/* Lateral polygons left */
.lateral-polygons-left {
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    width: auto;
    opacity: 0.8;
    z-index: 1;
}

/* Lateral polygons right */
.lateral-polygons-right {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    width: auto;
    opacity: 0.8;
    z-index: 1;
}

/* Hexagon pattern decoration */
.hex-pattern-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 500px;
}

.hex-deco-outline {
    position: absolute;
    border: 3px solid rgba(255, 179, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hexPulse 4s ease-in-out infinite;
}

@keyframes hexPulse {
    0%, 100% { 
        border-color: rgba(255, 179, 0, 0.3);
        background: rgba(255, 215, 0, 0.05);
    }
    50% { 
        border-color: rgba(255, 179, 0, 0.7);
        background: rgba(255, 215, 0, 0.15);
    }
}

.hex-deco-outline.hex-1 {
    width: 100px;
    height: 115px;
    top: 10%;
    left: 20px;
}

.hex-deco-outline.hex-2 {
    width: 80px;
    height: 92px;
    top: 30%;
    left: 60px;
}

.hex-deco-outline.hex-3 {
    width: 120px;
    height: 138px;
    top: 50%;
    left: 10px;
}

.hex-deco-outline.hex-4 {
    width: 60px;
    height: 69px;
    top: 70%;
    left: 100px;
}

.hex-deco-outline.hex-5 {
    width: 90px;
    height: 104px;
    bottom: 10%;
    left: 40px;
}

.hex-deco-outline.hex-6 {
    width: 70px;
    height: 80px;
    bottom: 30%;
    left: 150px;
}

/* Projects Content */
.projects-content {
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    align-items: center;
    position: relative;
    z-index: 2;
}

.projects-text {
    color: white;
}

.projects-text .section-label {
    color: #ff8c00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.projects-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.projects-intro {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 600;
}

.projects-list {
    list-style: none;
    margin-bottom: 40px;
}

.projects-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.projects-list .bullet {
    color: #FFD700;
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.project-description {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-description p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Athlete Visual */
.athlete-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.athlete-visual img {
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    margin-left: 150px;
}

.hex-border-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.athlete-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.hex-yellow-deco {
    position: absolute;
    width: 100px;
    height: 115px;
    background: #FFD700;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    bottom: -40px;
    left: -30px;
    opacity: 0.8;
}

/* Video wrapper for responsiveness */
.video-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.video-wrapper video {
    width: 100%;
    max-width: 600px;
    min-width: 280px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Hexagon Component - Using ow.png image */
.hexagon-component {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    display: none;
}

.hexagon-component.active {
    display: block;
}

.hexagon-image-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon-base-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

/* Clickable areas positioned over hexagons */
.hex-clickable {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 2;
}

.hex-clickable:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.hex-clickable:active {
    transform: scale(0.95);
    background: rgba(255, 215, 0, 0.5);
}

/* Positioning based on the image - adjusted for responsive */
.hex-vision-click {
    top: 8%;
    left: 8%;
    width: 16%;
    height: 25%;
}

.hex-manifiesto-click {
    top: 25%;
    left: 40%;
    width: 20%;
    height: 30%;
}

.hex-mision-click {
    top: 8%;
    right: 8%;
    width: 16%;
    height: 25%;
}

.hex-filosofia-click {
    bottom: 25%;
    left: 15%;
    width: 16%;
    height: 25%;
}

.hex-compromiso-click {
    bottom: 8%;
    right: 15%;
    width: 16%;
    height: 25%;
}

/* Hover effects for visual feedback */
.hex-clickable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hex-clickable:hover::after {
    width: 80%;
    height: 80%;
}

/* Tooltip for better UX */
.hex-clickable[data-tooltip] {
    position: relative;
}

.hex-clickable[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hexagon-base-image {
        max-width: 90vw;
    }
    
    .hex-clickable {
        border: 2px solid rgba(255, 215, 0, 0.6);
    }
    
    .hex-clickable:hover::before {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .hexagon-base-image {
        max-width: 95vw;
    }
    
    /* Make click areas slightly bigger on mobile */
    .hex-vision-click,
    .hex-mision-click,
    .hex-filosofia-click,
    .hex-compromiso-click {
        width: 18%;
        height: 27%;
    }
    
    .hex-manifiesto-click {
        width: 22%;
        height: 32%;
    }
}

.manifesto-content-expanded {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
}

.manifesto-content-expanded.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.manifesto-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.manifesto-text-section {
    flex: 2;
}

.manifesto-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-image-section .pesas-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.manifesto-title {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.manifesto-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.manifesto-highlight {
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #fff7e6 0%, #fff3d6 100%);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
}

.manifesto-highlight strong {
    color: #FF6B00;
}

.manifesto-highlight em {
    color: #666;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive para el contenido del manifiesto */
@media (max-width: 768px) {
    .manifesto-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .manifesto-content-expanded {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .manifesto-title {
        font-size: 20px;
    }
    
    .manifesto-text {
        font-size: 15px;
    }
    
    .manifesto-highlight {
        font-size: 16px;
        padding: 16px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #ff8c00 0%, #ff9944 10%, #ffaa66 20%, #ffbb88 30%, #ffccaa 40%, #ffddcc 50%, #ffeeee 60%, #fff5f5 70%, #fffafa 80%, #fffcfc 85%, #fffefe 90%, #ffffff 100%);
    position: relative;
}

.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-content .section-label {
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.blog-content h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 900;
}

.blog-intro {
    font-size: 18px;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    overflow: hidden;
}

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

.blog-text {
    padding: 25px;
    text-align: left;
}

.blog-text h3 {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

.newsletter-card {
    background: #FFC300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.newsletter-card h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 800;
}

.newsletter-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.newsletter-form button {
    background: #1a1a1a;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: #333;
}

.see-articles {
    background: #FF8C42;
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-articles:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 80px 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 20;
}

.contact-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Contact Corner Decorations */
.contact-corner-up {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: auto;
    z-index: 11;
}

.contact-corner-down {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: auto;
    z-index: 11;
    max-width: 50%;
}

.contact-poligono {
    position: absolute;
    opacity: 0.15;
    z-index: 1;
}

.poligono-1 {
    right: 50px;
    top: 10%;
    width: 120px;
    height: auto;
}

.poligono-2 {
    right: 200px;
    top: 40%;
    width: 180px;
    height: auto;
}

.poligono-3 {
    right: 100px;
    bottom: 20%;
    width: 100px;
    height: auto;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-container .contact-corner-up {
    position: absolute;
    top: 0px;
    left: -120px;
    z-index: 0;
}

.contact-container .contact-corner-down {
    position: absolute;
    bottom: -160px;
    right: -100px;
    z-index: 0;
    max-width: 250px;
}

.contact-title {
    text-align: center;
    font-size: 14px;
    color: #ff8c00;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-wrapper {
    background: linear-gradient(135deg, #ff8c00 0%, #ff9933 20%, #ffaa44 40%, #ffbb55 60%, #ffcc66 80%, #ffd700 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    z-index: 10;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
}

.file-upload label {
    cursor: pointer;
    font-size: 15px;
}

.file-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.required-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.submit-button {
    background: #2d2d2d;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    font-style: italic;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info li {
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.contact-illustration {
    text-align: center;
}

.contact-illustration img {
    max-width: 200px;
    height: auto;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 80px 40px 30px;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    margin-bottom: 40px;
}

.footer-sections {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ff8c00;
}

.footer-column ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-column li {
    margin-bottom: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff8c00;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column .phone {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff8c00;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff8c00;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .validation-content,
    .erdocr-content,
    .projects-container,
    .about-container,
    .protocols-content,
    .ergocr-content,
    .ambassadors-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .projects-content {
        display: block;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .athlete-visual {
        margin-top: 40px;
    }
    
    .video-section {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .video-section::before,
    .video-section::after {
        display: none;
    }
    
    .video-placeholder {
        min-width: auto;
        width: calc(100% - 20px);
        max-width: 500px;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
    }
    
    .video-container {
        margin: 0 auto 60px auto;
        padding: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .manifesto-container {
        flex-direction: column;
    }
    
    .molecular-structure {
        height: 300px;
    }
    
    /* Protocols image */
    .protocols-image {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .protocol-image {
        margin: 0 auto !important;
        display: block;
    }
    
    .ergocr-product img {
        margin-left: 0;
    }
    
    .athlete-visual img {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 10px 20px;
        display: block;
    }
    
    /* About section mobile fixes */
    .about-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 20px;
    }

    /* Typography */
    .text-content {
        text-align: center;
        max-width: 100%;
    }
    
    .text-content h1 {
        font-size: 3.2rem;
        letter-spacing: -0.5px;
        line-height: 1.05;
        font-weight: 900;
    }
    
    .text-content .italic {
        font-size: 2.8rem;
    }

    /* Hero buttons responsive */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-btn-filled,
    .hero-btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .validation-text h2,
    .erdocr-text h2,
    .projects-content h2,
    .blog-content h2,
    .protocols-text h2,
    .about-question {
        font-size: 2rem;
    }
    
    .manifesto-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Main Section */
    .main-section {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 100px;
        background-size: 150px auto, 200px auto, 180px auto, contain, auto;
    }
    
    .hero-content {
        gap: 40px;
        transform: translateY(0);
    }

    /* Hexagon Grid */
    .hexagon-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 20px;
    }

    .hex,
    .hex-small {
        position: static !important;
        transform: none !important;
        width: 120px !important;
        height: 138px !important;
    }

    .hex-lines {
        display: none;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-card {
        padding: 25px;
    }
    
    .newsletter-card h3 {
        font-size: 22px;
    }

    /* Contact */
    .contact-wrapper {
        padding: 40px 30px;
        margin-bottom: 60px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1rem;
    }

    /* Footer */
    .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Projects */
    .projects-list li {
        font-size: 14px;
    }
    
    .projects-text h2 {
        font-size: 2.2rem;
    }
    
    .lateral-polygons-left,
    .lateral-polygons-right {
        display: none;
    }
    
    /* Sections padding */
    .about-section,
    .protocols-section,
    .ergocr-section,
    .blog-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .ambassadors-section {
        padding: 60px 0;
        margin-top: 60px;
        border-radius: 15px 15px 0 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ambassadors-polygon-bg {
        width: 100%;
        box-sizing: border-box;
    }
    
    .ambassadors-content {
        padding: 0 15px;
        gap: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ambassadors-text {
        text-align: center;
        padding: 0;
        width: 100%;
    }
    
    .about-values-section {
        padding: 30px 20px 60px;
        margin-top: -80px;
    }
    
    .product-protocols,
    .projects-container {
        padding: 60px 20px;
    }
    
    /* Images and visuals */
    .hex-frame-athlete {
        width: 300px;
        height: 350px;
    }
    
    .proj-hex {
        display: none;
    }
    
    .video-placeholder {
        height: auto;
        min-height: 180px;
        aspect-ratio: 16 / 9;
        width: calc(100% - 20px);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-container {
        margin-bottom: 40px;
        padding: 0;
        width: 100%;
    }
    
    .video-container::before {
        display: none;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    /* Cards */
    .value-card {
        min-height: 200px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    /* Buttons */
    .contact-btn,
    .cta-button-dark,
    .ambassador-button,
    .protocol-button,
    .see-articles {
        padding: 12px 25px;
        font-size: 11px;
    }
    
    .buy-button {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    /* Download section */
    .download-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .download-section p {
        font-size: 16px;
        max-width: 100%;
    }
    
    /* About values section */
    .about-values-section::before {
        width: 300px;
        height: 300px;
        left: -100px;
    }
    
    /* Molecular structure */
    .molecule-illustration {
        position: static;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 0 auto 40px;
    }
    
    .product-info {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Corner decorations */
    .contact-corner-up,
    .contact-corner-down,
    .corner-bottom-left,
    .corner-top-right {
        width: 150px;
        max-width: 40%;
    }
    
    .contact-container .contact-corner-up {
        left: -50px;
        top: -50px;
    }
    
    .contact-container .contact-corner-down {
        right: -50px;
        bottom: -80px;
        max-width: 150px;
    }
    
    /* Hexagon decorations */
    .hex-pattern-left {
        display: none;
    }
    
    /* Protocol image */
    .protocol-image {
        max-width: 100%;
        margin: 0 auto !important;
    }
    
    /* Section spacing */
    .first-time-section {
        padding: 30px 20px;
    }
    
    /* Background images */
    .poligono-decoration,
    .contact-poligono {
        display: none;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hexFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hexSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

/* Clases de utilidad */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Selección de texto */
::selection {
    background: #FFB300;
    color: #1a1a1a;
}

::-moz-selection {
    background: #FFB300;
    color: #1a1a1a;
}

/* Estilos para la imagen section_2.png en PROTOCOLOS */
.section-2-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Sección de descarga completa */
.download-section-full {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
    padding: 25px 30px;
    background: #EC6440;
    border-radius: 10px;
}

.download-section-full p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Estilos para el botón de descarga en la sección naranja */
.download-section-full .download-btn {
    background: #ffffff;
    color: #EC6440;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-section-full .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cambiar fondo de protocols-section a blanco */
.protocols-section {
    background: #ffffff !important;
}

/* ESQUINAS DECORATIVAS PARA VALIDACIÓN UNIVERSITARIA */
.validation-content {
    position: relative;
    padding: 20px 40px;
}

.corner-left {
    position: absolute;
    top: 0;
    left: -10px;
    width: 60px;
    height: 60px;
}

.corner-right {
    position: absolute;
    bottom: 20px;
    right: 70px;
    width: 60px;
    height: 60px;
}

/* Estilos para protocol.png */
.protocol-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 30px 0 0 -80px;
}

/* Estilos para polígono decorativo */
.poligono-decoration {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.8;
}

.product-process {
    position: relative;
    background-color: #313638;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
}

.product-process .highlight-text {
    color: white;
}

.product-process .highlight-text em {
    color: #FFD700;
}

/* Fondo de polígonos para la sección de embajadores */
.ambassadors-polygon-bg {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}


.ambassadors-content {
    position: relative;
    z-index: 1;
}

/* Esquinas decorativas para sección de embajadores */
.corner-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.corner-bottom-left {
    bottom: -80px;
    left: -80px;
}

.corner-top-right {
    top: -80px;
    right: -80px;
}

@media (max-width: 768px) {
    .corner-decoration {
        display: none !important;
    }
}

.corner-decoration img {
    width: 220px;
    height: 220px;
    opacity: 0.3;
    filter: brightness(1.2) contrast(1.3);
}

/* Small devices (tablets, 640px and down) */
@media (max-width: 640px) {
    /* Hero section mobile improvements */
    .main-section {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 60px;
        background: linear-gradient(180deg, #F18C46 0%, #F5A74A 40%, #FEC500 60%, #FFD73D 75%, #FFE566 85%, #FFF2B3 93%, #FFFAE6 97%, #FFFFFF 100%);
        position: relative;
    }
    
    /* Add subtle polygon decoration for mobile */
    .main-section::before {
        content: '';
        position: absolute;
        top: 10%;
        right: -50px;
        width: 150px;
        height: 150px;
        background: url('img/poligono.png') no-repeat center;
        background-size: contain;
        opacity: 0.1;
        z-index: 1;
    }
    
    .main-section::after {
        content: '';
        position: absolute;
        bottom: 20%;
        left: -50px;
        width: 120px;
        height: 120px;
        background: url('img/poligono.png') no-repeat center;
        background-size: contain;
        opacity: 0.08;
        z-index: 1;
    }
    
    .hero-content {
        padding: 20px;
        gap: 30px;
    }
    
    .text-content {
        padding: 0;
    }
    
    .text-content h1 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 25px;
        font-weight: 900;
    }
    
    .text-content .italic {
        display: block;
        margin-top: 10px;
        font-size: 2.2rem;
    }
    
    /* Hero buttons mobile */
    .hero-buttons {
        gap: 12px;
        margin-top: 30px;
    }
    
    .hero-btn-filled,
    .hero-btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    /* Video section mobile */
    .video-section {
        width: 100%;
        padding: 0;
    }
    
    .video-wrapper {
        width: 100%;
        padding: 0 10px;
    }
    
    .video-placeholder {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 160px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
    }
    
    .play-btn::after {
        border-left: 16px solid #1a1a1a;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 4px;
    }
    
    .video-section::before,
    .video-section::after {
        width: 150px;
        height: 150px;
    }
    
    .video-section::before {
        top: -50px;
        right: -60px;
    }
    
    .video-section::after {
        bottom: -50px;
        left: -60px;
    }
    
    .ambassadors-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    /* Fix ambassadors section alignment */
    .ambassadors-section {
        padding: 40px 0;
    }
    
    .ambassadors-polygon-bg {
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }
    
    .ambassadors-content {
        padding: 0 10px;
        margin: 0;
    }
    
    .video-container {
        width: 100%;
        margin: 0 auto 30px auto;
        padding: 0;
    }
    
    .video-wrapper {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .video-placeholder {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    /* Hero section extra small improvements */
    .main-section {
        min-height: 100vh;
        padding-top: 65px;
        padding-bottom: 40px;
        display: flex;
        align-items: center;
    }
    
    .main-section::before {
        width: 100px;
        height: 100px;
        top: 5%;
        right: -30px;
    }
    
    .main-section::after {
        width: 80px;
        height: 80px;
        bottom: 10%;
        left: -30px;
    }
    
    .hero-content {
        padding: 15px;
        gap: 25px;
    }
    
    /* Typography */
    .text-content {
        text-align: center;
        max-width: 100%;
    }
    
    .text-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
        margin-bottom: 20px;
        font-weight: 900;
    }
    
    .text-content .italic {
        font-size: 1.9rem;
        line-height: 1.15;
    }
    
    /* Hero buttons extra small */
    .hero-buttons {
        gap: 10px;
        margin-top: 25px;
    }
    
    .hero-btn-filled,
    .hero-btn-outline {
        width: 100%;
        max-width: none;
    }
    
    /* Video section extra small */
    .video-section {
        margin-top: 20px;
    }
    
    .video-placeholder {
        max-width: 300px;
        min-height: 140px;
    }
    
    .play-btn {
        width: 45px;
        height: 45px;
    }
    
    .play-btn::after {
        border-left: 14px solid #1a1a1a;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 3px;
    }
    
    .about-question,
    .protocols-text h2,
    .ergocr-text h2,
    .projects-text h2,
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    /* Main section */
    .main-section {
        background-position: -50px 20%, -30px 75%, center 25%, right -200px center, center;
        padding-top: 70px;
    }
    
    /* Hexagons */
    .hex,
    .hex-small {
        width: 100px !important;
        height: 115px !important;
    }
    
    .hex-icon {
        font-size: 24px;
    }
    
    .hex-text {
        font-size: 11px;
    }
    
    /* Values grid */
    .values-grid {
        gap: 15px;
    }
    
    .value-icon {
        font-size: 36px;
    }
    
    .value-card h3 {
        font-size: 18px;
    }
    
    .value-card p {
        font-size: 14px;
    }
    
    /* Manifesto */
    .manifesto-content {
        padding: 30px 20px;
    }
    
    .manifesto-title {
        font-size: 1.3rem;
    }
    
    .manifesto-text {
        font-size: 14px;
    }
    
    /* Download section */
    .download-section-full {
        padding: 20px;
    }
    
    .download-section-full p {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-wrapper {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 20px 20px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    /* Blog */
    .blog-card {
        margin-bottom: 10px;
    }
    
    .blog-image {
        height: 150px;
    }
    
    .blog-text {
        padding: 20px;
    }
    
    .blog-text h3 {
        font-size: 16px;
    }
    
    /* Buttons */
    .buy-button {
        width: 100%;
    }
    
    .submit-button {
        font-size: 12px;
    }
    
    /* Images */
    .ergocr-product img {
        max-width: 350px;
    }
    
    .athlete-visual img {
        max-width: 400px;
    }
    
    /* Projects */
    .projects-intro {
        font-size: 16px;
    }
    
    .projects-list li {
        font-size: 13px;
    }
    
    .project-description {
        padding: 20px;
    }
    
    .project-description p {
        font-size: 14px;
    }
}

/* Responsive para sección 2 */
@media (max-width: 768px) {
    .section-2-football {
        padding: 50px 15px;
    }
    
    .football-image {
        max-width: 100%;
    }
    
    .corner-left,
    .corner-right {
        width: 30px;
        height: 30px;
    }
    
    .validation-content {
        padding: 20px 25px;
    }
}

/* Desktop screens - Apply grid to projects content */
@media (min-width: 1025px) {
    .projects-content {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 20px;
    }
}

/* High resolution screens */
@media (min-width: 1440px) {
    .hero-content,
    .about-container,
    .protocols-content,
    .ergocr-content,
    .projects-content,
    .ambassadors-content,
    .blog-content,
    .contact-container,
    .footer-content {
        max-width: 1400px;
    }
    
    .text-content h1 {
        font-size: 3.8rem;
        letter-spacing: -1.5px;
    }
}