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

:root {
    --orange: #F5821F;
    --red: #C8102E;
    --yellow: #FFDE59;
    --black: #1A1A1A;
    --gray: #4D4D4D;
    --gray-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    overflow-y: scroll;
}

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

/* Barra Superior Naranja */
.top-bar {
    background: var(--orange);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.top-social a {
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-social a:hover {
    color: var(--red);
    transform: scale(1.2);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.language-selector select {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    outline: none;
}

.language-selector select option {
    background: var(--orange);
    color: var(--white);
}

/* Barra de Redes Sociales Lateral */
.social-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-bar a {
    width: 45px;
    height: 45px;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.social-bar a:hover {
    background: var(--red);
    transform: scale(1.1);
}

/* Header y Navegación */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 44px;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

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

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

.logo a {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    transition: transform 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1200;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 350px;
    max-height: 650px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 130, 31, 0.8);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--orange);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Sección: ¿Qué estamos haciendo? */
.what-we-do {
    padding: 80px 0;
    background: var(--white);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Sección: ¿Qué hacemos? */
.what-we-do-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4D4D4D;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.pillars-title {
    text-align: center;
    color: #F5821F;
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pillar-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5821F, #C8102E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(245, 130, 31, 0.4);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.1), rgba(200, 16, 46, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: #F5821F;
}

.pillar-card h4 {
    color: #C8102E;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pillar-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Sección: Cómo puedes apoyar */
.support-section {
    padding: 80px 0;
    background: var(--white);
}

.support-section h2 {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.support-card {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.support-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.support-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.support-quote {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sección: Impacto */
.impact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.1), rgba(200, 16, 46, 0.1));
}

.impact-section h2 {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.impact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.map-container {
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

.stat-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.impact-tagline {
    text-align: center;
    color: var(--red);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Sección: Aliados */
.partners-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-section h2 {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.partners-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f1f1f1;
}

.partners-slider::-webkit-scrollbar {
    height: 8px;
}

.partners-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.partners-slider::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.partners-slider::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.partners-slider:active {
    cursor: grabbing;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    user-select: none;
}

.partners-track img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partners-track img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sección de Contacto */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--black);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--gray);
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-description {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-column p {
    margin-bottom: 10px;
}

.footer-column i {
    margin-right: 10px;
    color: var(--orange);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--orange);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* ============================================
   ESTILOS PARA APADRINAMIENTO.PHP
   ============================================ */

/* Banner Hero */
.apadrinamiento-hero {
    position: relative;
    background: linear-gradient(135deg, #F5821F, #C8102E);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.apadrinamiento-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/apadrinamiento-banner.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 1000px;
}

.apadrinamiento-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.apadrinamiento-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.hero-secondary {
    font-size: 1.1rem !important;
    opacity: 0.95;
}

/* Sección Principal */
.apadrinamiento-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.section-title-center {
    text-align: center;
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 50px;
}

/* Tarjetas de Apadrinamiento */
.apadrinamiento-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.apadrinamiento-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.apadrinamiento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.card-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.card-blue .card-badge {
    background: #007bff;
}

.card-green .card-badge {
    background: #28a745;
}

.card-orange .card-badge {
    background: #F5821F;
}

.apadrinamiento-card h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.card-blue .card-price {
    color: #007bff;
}

.card-green .card-price {
    color: #28a745;
}

.card-orange .card-price {
    color: #F5821F;
}

.card-price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray);
}

.card-price-usd {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-price-annual {
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.1), rgba(200, 16, 46, 0.1));
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.card-price-annual strong {
    color: var(--red);
    font-weight: 600;
}

.card-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.card-benefits li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-benefits i {
    margin-right: 10px;
    font-size: 1rem;
}

.card-blue .card-benefits i {
    color: #007bff;
}

.card-green .card-benefits i {
    color: #28a745;
}

.card-orange .card-benefits i {
    color: #F5821F;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-blue {
    background: #007bff;
}

.btn-blue:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.btn-green {
    background: #28a745;
}

.btn-green:hover {
    background: #218838;
    transform: scale(1.05);
}

.btn-orange {
    background: #F5821F;
}

.btn-orange:hover {
    background: #C8102E;
    transform: scale(1.05);
}

.card-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Donación única */
.donacion-unica {
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.1), rgba(200, 16, 46, 0.1));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.donacion-unica h3 {
    color: var(--red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.donacion-unica h3 i {
    color: var(--orange);
    margin-right: 10px;
}

.donacion-unica p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donacion-unica .btn-primary {
    display: inline-block;
    margin-bottom: 15px;
}

/* Certificado Info */
.certificado-info {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.certificado-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificado-icon i {
    font-size: 2.5rem;
    color: white;
}

.certificado-text h4 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.certificado-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.apadrinamiento-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);
}

.sidebar-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(245, 130, 31, 0.5);
}

.sidebar-btn i {
    font-size: 1.5rem;
}

.sidebar-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

.sidebar-info {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.sidebar-info h4 {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sidebar-info h4 i {
    margin-right: 8px;
}

.sidebar-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Sección: Por qué apadrinar */
.why-sponsor {
    padding: 80px 0;
    background: white;
}

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

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.why-card:hover {
    background: #f9f9f9;
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2.5rem;
    color: white;
}

.why-card h3 {
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   ESTILOS PARA BANNER DE VIDEO
   ================================ */

.banner-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-overlay .container {
    text-align: center;
    color: white;
    padding: 20px;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.video-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .apadrinamiento-cards {
        gap: 25px;
    }
    
    .apadrinamiento-card {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .main-content-wrapper {
        grid-template-columns: 1fr;
    }

    .apadrinamiento-sidebar {
        position: static;
    }

    .apadrinamiento-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-video {
        height: 70vh;
        min-height: 500px;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }

    .top-bar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    header {
        top: 74px;
    }
    
    .social-bar {
        right: 10px;
    }
    
    .social-bar a {
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1200;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .logo {
        z-index: 1100;
        position: relative;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    header .navbar .nav-wrapper .nav-menu,
    .nav-wrapper .nav-menu,
    ul.nav-menu {
        position: fixed !important;
        left: 0 !important;
        top: 150px !important;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        transition: transform 0.3s ease !important;
        gap: 15px;
        z-index: 1100 !important;
        display: flex !important;
        transform: translateX(-100%) !important;
    }
    
    header .navbar .nav-wrapper .nav-menu.active,
    .nav-wrapper .nav-menu.active,
    ul.nav-menu.active,
    .nav-menu.active {
        transform: translateX(0) !important;
    }
    
    .banner-slider {
        height: 50vh;
        min-height: 250px;
        max-height: 400px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .slider-btn {
        padding: 5px 15px;
        font-size: 24px;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .pillars-title {
        font-size: 1.5rem;
    }

    .apadrinamiento-hero h1 {
        font-size: 2rem;
    }

    .apadrinamiento-hero p {
        font-size: 1rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .apadrinamiento-cards {
        grid-template-columns: 1fr;
    }

    .donacion-unica {
        padding: 35px 25px;
    }
    
    .donacion-unica h3 {
        font-size: 1.6rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-btn span {
        font-size: 0.9rem;
    }
    
    .certificado-info {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .certificado-icon {
        width: 70px;
        height: 70px;
    }
    
    .certificado-icon i {
        font-size: 2rem;
    }
    
    .certificado-text h4 {
        font-size: 1.3rem;
    }
    
    .certificado-text p {
        font-size: 1rem;
    }
    
    .banner-video {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .language-selector {
        justify-content: center;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .support-section h2,
    .impact-section h2,
    .partners-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .support-quote {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }

    .apadrinamiento-hero h1 {
        font-size: 1.6rem;
    }
    
    .apadrinamiento-hero p {
        font-size: 0.95rem;
    }

    .card-price {
        font-size: 2.2rem;
    }

    .donacion-unica {
        padding: 25px 20px;
    }
    
    .donacion-unica h3 {
        font-size: 1.4rem;
    }
    
    .apadrinamiento-card {
        padding: 25px 20px;
    }
    
    .card-benefits li {
        font-size: 0.85rem;
    }
    
    .card-price-annual {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .banner-video {
        height: 50vh;
        min-height: 350px;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
    }
}
