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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

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

h1, h2, h3 {
    font-family: 'Pattaya', sans-serif;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px 0;
}

section {
    padding: 50px 0;
}

/* HEADER */
header {
    background-color: #ff3131;
    color: #f0e9d7;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    width: 200px;
}

.menu-hamburguesa {
    display: none;
    background: none;
    border: none;
    color: #f0e9d7;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    justify-content: center;
}

nav ul li a {
    color: #f0e9d7;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #fff;
}

/* Botones generales */
.btn, .share-button, .btn-subir {
    text-transform: uppercase;
}

/* HERO */
.hero {
    background-color: #ff3131;
    color: #f0e9d7;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: #f0e9d7;
    text-shadow: 
        -4px -4px 0 #000,  
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        6px 6px 0px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 40px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #f0e9d7;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.hashtag {
    font-size: 1.8rem;
    margin-top: 30px;
    font-weight: bold;
}

/* ESTUDIO */
.estudio {
    padding: 80px 0;
    background-color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.estudio-item {
    text-align: center;
    margin-bottom: 40px;
}

.estudio-item img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.estudio-item h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

/* MANIFIESTO */
.manifiesto {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.manifiesto-subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.manifiesto-item {
    text-align: center;
    margin-bottom: 40px;
}

.manifiesto-item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.manifiesto-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* EXPERTOS */
.expertos {
    padding: 80px 0;
}

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

.experto-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.experto-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.experto-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.experto-hover p {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.experto-item:hover .experto-hover {
    opacity: 1;
}

.experto-item:hover {
    transform: scale(1.05);
}

/* ME COMPROMETO */
.compromiso {
    background-color: #f9f9f9;
    padding: 80px 0 20px;
}

.compromiso h2 {
    text-transform: none;
}

.compromiso-subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.compromiso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.compromiso-item {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.compromiso-item:hover {
    transform: translateY(-10px);
}

.compromiso-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.compromiso-item p {
    margin-bottom: 5px;
}

.compromiso-item h3 {
    color: #333;
    margin-bottom: 5px;
}

.compromiso-quote {
    text-align: center;
    margin: 4rem 0;
    font-family: 'Pattaya', sans-serif;
}

.compromiso-quote h3 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.2;
}

.compromiso-quote .hashtag {
    color: #ff3131;
    margin-top: 1.5rem;
}

/* FOOTER */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 20px;
}

.social-icons a:hover {
    background-color: #ff3131;
    transform: translateY(-3px);
}

/* Modal para compartir */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    max-width: 80%;
    max-height: 80%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #333;
}

.share-buttons {
    margin-top: 20px;
}

.share-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    font-weight: bold;
}

/* Botón Subir Arriba */
.btn-subir {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff3131;
    color: #f0e9d7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.btn-subir i {
    font-size: 24px;
    line-height: 1;
}

.btn-subir.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-subir:hover {
    background-color: #e62020;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .grid {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .grid, .expertos-grid, .compromiso-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .estudio-item img {
        width: 200px;
        height: 200px;
    }

    .manifiesto-item img {
        width: 200px;
        height: 160px;
    }

    .experto-item img {
        width: 180px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 2rem;
        margin: 30px 0;
    }

    .manifiesto-subtitle, .compromiso-subtitle {
        font-size: 1.1rem;
    }

    .expertos-grid {
        justify-items: center;
    }

    .experto-item {
        max-width: 180px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        margin: 0;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-logo,
    .logo-footer {
        max-width: 250px;
    }
    
    .footer-brand p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .grid, .expertos-grid, .compromiso-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 
            -3px -3px 0 #000,  
            3px -3px 0 #000,
            -3px 3px 0 #000,
            3px 3px 0 #000,
            4px 4px 0px rgba(0,0,0,0.8);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .estudio-item, .manifiesto-item {
        margin-bottom: 30px;
    }

    .estudio-item img {
        width: 180px;
        height: 180px;
    }

    .manifiesto-item img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    .expertos-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .experto-item {
        max-width: 200px;
        width: 100%;
    }

    .experto-item img {
        width: 160px;
        height: 240px;
        margin: 0 auto;
        display: block;
    }

    .experto-hover {
        padding: 15px;
    }

    .experto-hover p {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        max-width: 140px;
        margin: 0 auto;
    }

    .compromiso-item {
        padding: 15px;
    }

    .compromiso-quote {
        font-size: 1.3rem;
    }

    .btn-subir {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .btn-subir i {
        font-size: 20px;
    }

    .modal-content {
        max-width: 95%;
        padding: 15px;
    }

    .share-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .share-button {
        width: 100%;
    }

    .footer-logo,
    .logo-footer {
        max-width: 200px;
    }
    
    .footer-brand p {
        font-size: 18px;
    }
    
    .footer-brand {
        padding-top: 15px;
    }
}

@media (max-width: 900px) {
    .header-container {
        justify-content: space-between;
        gap: 30px;
    }
    
    .logo {
        width: 120px;
    }
    
    .menu-hamburguesa {
        display: block;
        order: 1;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 49, 49, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        padding: 20px;
    }
    
    nav ul.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 1.5rem;
        display: block;
        padding: 10px;
        width: 100%;
        text-align: center;
    }
}

/* MARCAS */
.marcas {
    padding: 20px 0 50px;
    background-color: #fff;
}

.marcas h2 {
    margin: 0 0 30px;
    font-size: 2rem;
}

.marcas-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.marca-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marca-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive ajustes para marcas */
@media (max-width: 768px) {
    .marcas {
        padding: 10px 0 40px;
    }
    
    .marcas-grid {
        gap: 20px;
    }
    
    .marca-item img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .marcas h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .marcas-grid {
        gap: 15px;
    }
    
    .marca-item img {
        width: 60px;
        height: 60px;
    }
}

/* POLÍTICA DE PRIVACIDAD */
.politica {
    padding: 80px 0;
    background-color: #fff;
}

.politica h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.politica-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.politica h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e9d7;
}

.politica h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.politica p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.politica ul {
    margin: 15px 0;
    padding-left: 20px;
}

.politica ul li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

.politica-content a {
    color: #ff3131;
    text-decoration: none;
    transition: all 0.3s ease;
}

.politica-content a:hover {
    color: #e62020;
    text-decoration: underline;
}

.politica-content strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .politica {
        padding: 40px 0;
    }

    .politica h1 {
        font-size: 2rem;
    }

    .politica-content {
        padding: 15px;
    }

    .politica h2 {
        font-size: 1.6rem;
    }

    .politica h3 {
        font-size: 1.3rem;
    }
}

/* QUIÉNES SOMOS */
.quienes-somos {
    padding: 80px 0;
    background-color: #fff;
}

.quienes-somos h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.quienes-somos-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.quienes-somos-imagen {
    margin-bottom: 40px;
}

.quienes-somos-imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.quienes-somos-texto h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e9d7;
    text-align: left;
}

.quienes-somos-texto p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.compromiso-lista, .atributos-lista {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.compromiso-lista li, .atributos-lista li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.compromiso-lista li:before, .atributos-lista li:before {
    content: "•";
    color: #ff3131;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.valor-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.valor-item h3 {
    color: #ff3131;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.valor-item p {
    font-size: 0.95rem;
    margin: 0;
}

.contacto-seccion {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.btn-contacto {
    display: inline-block;
    background-color: #ff3131;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-contacto:hover {
    background-color: #e62020;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quienes-somos {
        padding: 40px 0;
    }

    .quienes-somos h1 {
        font-size: 2rem;
    }

    .quienes-somos-texto h2 {
        font-size: 1.6rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-seccion {
        padding: 30px 20px;
    }
}

/* CONTACTO */
.contacto {
    padding: 80px 0;
    background-color: #f0e9d7;
}

.contacto h1 {
    text-align: center;
    color: #ff3131;
    margin-bottom: 50px;
    font-size: 2.5em;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contacto-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.contacto-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contacto-item h2 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contacto-item a {
    color: #ff3131;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacto-item a:hover {
    color: #cc2828;
}

.btn-colaborar {
    display: inline-block;
    background-color: #ff3131;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-colaborar:hover {
    background-color: #cc2828;
    color: #fff !important;
}

.contacto-ubicacion {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contacto-ubicacion h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contacto-ubicacion address {
    font-style: normal;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.mapa {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.mapa iframe {
    width: 100%;
    height: 100%;
}

/* Media Queries para Contacto */
@media (min-width: 768px) {
    .contacto-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .contacto {
        padding: 40px 0;
    }

    .contacto h1 {
        font-size: 2em;
    }

    .contacto-item h2 {
        font-size: 1.1em;
    }

    .mapa {
        height: 300px;
    }
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.footer-brand p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.footer-logo {
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-footer {
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.movimiento-creado {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
}

.movimiento-creado::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
}

.movimiento-creado h2 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-creador {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.logo-creador:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .movimiento-creado {
        padding: 60px 0;
    }
    
    .movimiento-creado h2 {
        font-size: 28px;
        gap: 15px;
    }
    
    .logo-creador {
        height: 70px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .movimiento-creado h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 20px;
    }
} 