:root {
--blue: #003f8f;
--green: #2f9444;
--yellow: #f6c33b;
--black: #111111;
--gray: #555555;
--light: #f8f8f4;
--white: #ffffff;
--shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
--header-height: 92px;
}

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

html {
scroll-behavior: smooth;
scroll-padding-top: var(--header-height);
}

body {
font-family: Arial, Helvetica, sans-serif;
color: var(--black);
background: var(--white);
}

img {
max-width: 100%;
display: block;
}

a {
text-decoration: none;
color: inherit;
}

button {
font-family: inherit;
}

.container {
width: min(1180px, 92%);
margin: 0 auto;
}

/* HEADER */

.header {
background: rgba(255, 255, 255, 0.97);
position: sticky;
top: 0;
z-index: 1000;
height: var(--header-height);
box-shadow: 0 2px 22px rgba(0, 0, 0, 0.04);
backdrop-filter: blur(12px);
}

.header.scrolled {
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.nav-container {
height: var(--header-height);
display: flex;
align-items: center;
justify-content: space-between;
gap: 22px;
position: relative;
}

.logo {
height: var(--header-height);
display: flex;
align-items: center;
overflow: hidden;
position: relative;
z-index: 1002;
}

.logo img {
width: 132px;
max-height: 82px;
height: auto;
object-fit: contain;
}

.nav {
display: flex;
align-items: center;
gap: 26px;
font-size: 15px;
font-weight: 700;
}

.nav a {
position: relative;
color: #222;
transition: color 0.25s ease;
}

.nav a.active,
.nav a:hover {
color: var(--green);
}

.nav a::after {
content: "";
position: absolute;
left: 0;
bottom: -10px;
width: 0;
height: 2px;
background: var(--green);
transition: width 0.25s ease;
}

.nav a.active::after,
.nav a:hover::after {
width: 100%;
}

.btn-donar {
background: var(--blue);
color: var(--white);
padding: 16px 28px;
border-radius: 14px;
font-weight: 800;
box-shadow: var(--shadow);
white-space: nowrap;
}

.menu-toggle {
display: none;
border: none;
background: transparent;
color: var(--blue);
font-size: 34px;
line-height: 1;
cursor: pointer;
padding: 12px;
border-radius: 12px;
position: relative;
z-index: 1003;
touch-action: manipulation;
}

.menu-toggle:active {
transform: scale(0.96);
}

.menu-icon {
display: block;
pointer-events: none;
}

/* BOTONES FLOTANTES DE CONTACTO */

.floating-contact {
position: fixed;
right: 18px;
top: 50%;
transform: translateY(-50%);
z-index: 900;
display: flex;
flex-direction: column;
gap: 12px;
}

.floating-contact-btn {
width: 54px;
min-height: 54px;
border-radius: 999px;
background: var(--blue);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
box-shadow: 0 14px 32px rgba(0, 63, 143, 0.22);
font-size: 22px;
font-weight: 800;
overflow: hidden;
white-space: nowrap;
transition: width 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.floating-contact-btn span {
display: none;
font-size: 14px;
padding-right: 16px;
}

.floating-contact-btn:hover {
width: 150px;
transform: translateX(-4px);
}

.floating-contact-btn:hover span {
display: inline-block;
}

.floating-whatsapp {
background: #25d366;
}

.floating-email {
background: var(--blue);
}

.floating-phone {
background: var(--green);
}

/* HERO */

.hero {
position: relative;
overflow: hidden;
background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, #f1f5f2 100%);
}

.hero-container {
min-height: 560px;
display: grid;
grid-template-columns: 1fr 1.12fr;
align-items: center;
gap: 30px;
}

.hero-content {
position: relative;
z-index: 3;
padding: 55px 0 80px;
}

.hero-content h1 {
font-size: clamp(42px, 5vw, 72px);
line-height: 1.05;
letter-spacing: -2px;
margin-bottom: 26px;
}

.green {
color: var(--green);
}

.blue {
color: var(--blue);
}

.heart {
color: var(--yellow);
font-weight: 300;
}

.hero-content p {
max-width: 520px;
font-size: 20px;
line-height: 1.6;
color: #333;
margin-bottom: 34px;
}

.hero-buttons {
display: flex;
flex-wrap: wrap;
gap: 18px;
}

.btn-primary,
.btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 58px;
padding: 0 30px;
border-radius: 16px;
font-weight: 800;
transition: 0.25s ease;
}

.btn-primary {
background: var(--blue);
color: var(--white);
box-shadow: var(--shadow);
}

.btn-secondary {
background: var(--white);
color: var(--green);
border: 2px solid rgba(47, 148, 68, 0.45);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-donar:hover,
.news-button:hover {
transform: translateY(-2px);
}

/* HERO CARRUSEL */

.hero-carousel {
height: 100%;
min-height: 560px;
position: relative;
border-bottom-left-radius: 90px;
overflow: hidden;
background: #eef3ee;
box-shadow: inset 30px 0 50px rgba(255, 255, 255, 0.3);
}

.carousel-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: scale(1.03);
transition: opacity 0.8s ease, transform 1.2s ease;
}

.carousel-slide.active {
opacity: 1;
transform: scale(1);
z-index: 1;
}

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

.hero-carousel::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
#ffffff 0%,
rgba(255, 255, 255, 0.78) 17%,
rgba(255, 255, 255, 0) 46%
);
z-index: 2;
pointer-events: none;
}

.carousel-btn {
position: absolute;
top: 50%;
z-index: 4;
width: 44px;
height: 44px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.86);
color: var(--blue);
font-size: 32px;
line-height: 1;
cursor: pointer;
display: grid;
place-items: center;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
transform: translateY(-50%);
transition: 0.25s ease;
}

.carousel-btn:hover {
background: var(--blue);
color: var(--white);
}

.carousel-btn.prev {
left: 24px;
}

.carousel-btn.next {
right: 24px;
}

.carousel-dots {
position: absolute;
right: 32px;
bottom: 28px;
z-index: 4;
display: flex;
gap: 10px;
}

.dot {
width: 12px;
height: 12px;
border: none;
border-radius: 999px;
background: rgba(255, 255, 255, 0.75);
cursor: pointer;
transition: 0.25s ease;
}

.dot.active {
width: 32px;
background: var(--yellow);
}

.hero-shape {
position: absolute;
left: -90px;
top: 20px;
width: 180px;
height: 180px;
background: var(--yellow);
border-radius: 0 0 100% 0;
opacity: 0.9;
}

/* WAVES */

.wave-section {
height: 72px;
position: relative;
background: var(--white);
overflow: hidden;
}

.wave-blue,
.wave-green {
position: absolute;
width: 120%;
height: 60px;
left: -10%;
border-radius: 50%;
}

.wave-blue {
top: -12px;
background: var(--blue);
transform: rotate(-2deg);
}

.wave-green {
top: 8px;
background: var(--green);
transform: rotate(1.5deg);
}

/* SECCIONES GENERALES */

.section-title {
text-align: center;
max-width: 760px;
margin: 0 auto 42px;
}

.section-kicker {
display: inline-flex;
color: var(--green);
background: rgba(47, 148, 68, 0.1);
padding: 9px 16px;
border-radius: 999px;
font-size: 13px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.7px;
margin-bottom: 14px;
}

.section-title h2 {
font-size: clamp(32px, 4vw, 48px);
color: var(--blue);
margin-bottom: 16px;
}

.section-title p {
color: #333;
line-height: 1.6;
font-size: 17px;
}

.blue-bg {
background: var(--blue);
}

.green-bg {
background: var(--green);
}

/* ABOUT / NOSOTROS */

.about {
padding: 70px 0 65px;
background: var(--white);
}

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

.about-card {
text-align: center;
padding: 30px 22px 32px;
border-radius: 28px;
background: linear-gradient(180deg, #ffffff 0%, #f8f8f4 100%);
border: 1px solid rgba(0, 63, 143, 0.08);
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
transition: 0.25s ease;
}

.about-card::before {
content: "";
position: absolute;
right: -60px;
top: -60px;
width: 140px;
height: 140px;
background: rgba(246, 195, 59, 0.16);
border-radius: 50%;
}

.about-card:hover {
transform: translateY(-4px);
box-shadow: 0 24px 60px rgba(0, 63, 143, 0.12);
}

.about-icon {
width: 82px;
height: 82px;
margin: 0 auto 20px;
display: grid;
place-items: center;
border-radius: 50%;
color: var(--white);
font-size: 34px;
font-weight: 900;
position: relative;
z-index: 2;
}

.about-icon::after,
.policy-icon::after,
.donation-card-icon::after,
.timeline-marker::after {
content: "";
position: absolute;
width: 34px;
height: 18px;
right: -10px;
bottom: 4px;
background: var(--yellow);
border-radius: 100%;
transform: rotate(-40deg);
z-index: -1;
}

.about-card h3 {
color: var(--green);
font-size: 22px;
margin-bottom: 14px;
position: relative;
z-index: 2;
}

.about-card p {
font-size: 15px;
color: #333;
line-height: 1.7;
position: relative;
z-index: 2;
}

.values-list {
display: flex;
flex-wrap: wrap;
gap: 9px;
justify-content: center;
position: relative;
z-index: 2;
}

.values-list span {
background: #fff7df;
color: #6f5400;
padding: 8px 11px;
border-radius: 999px;
font-size: 13px;
font-weight: 800;
}

/* POLÍTICAS */

.policies {
padding: 90px 0;
background: linear-gradient(180deg, #ffffff 0%, #f8f8f4 100%);
}

.policies-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
max-width: 980px;
margin: 0 auto;
}

.policy-card {
background: var(--white);
border-radius: 30px;
padding: 34px 30px;
box-shadow: 0 18px 45px rgba(0, 63, 143, 0.1);
border: 1px solid rgba(0, 63, 143, 0.08);
position: relative;
overflow: hidden;
transition: 0.25s ease;
}

.policy-card::before {
content: "";
position: absolute;
inset: 0 auto 0 0;
width: 7px;
background: linear-gradient(180deg, var(--green), var(--blue));
}

.policy-card::after {
content: "";
position: absolute;
right: -45px;
top: -45px;
width: 120px;
height: 120px;
background: rgba(246, 195, 59, 0.14);
border-radius: 50%;
}

.policy-card:hover {
transform: translateY(-5px);
box-shadow: 0 24px 60px rgba(0, 63, 143, 0.14);
}

.policy-top {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 22px;
position: relative;
z-index: 2;
}

.policy-icon {
width: 62px;
height: 62px;
min-width: 62px;
border-radius: 50%;
display: grid;
place-items: center;
background: var(--blue);
color: var(--white);
font-size: 26px;
box-shadow: 0 12px 25px rgba(0, 63, 143, 0.18);
position: relative;
z-index: 2;
}

.policy-badge {
display: inline-flex;
align-items: center;
background: rgba(47, 148, 68, 0.1);
color: var(--green);
padding: 9px 14px;
border-radius: 999px;
font-size: 13px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.4px;
}

.policy-card h3 {
color: var(--blue);
font-size: 28px;
line-height: 1.15;
margin-bottom: 16px;
position: relative;
z-index: 2;
}

.policy-card p {
color: var(--gray);
font-size: 16px;
line-height: 1.75;
margin-bottom: 24px;
position: relative;
z-index: 2;
}

.policy-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
padding: 0 22px;
border-radius: 14px;
background: var(--blue);
color: var(--white);
font-weight: 800;
font-size: 15px;
transition: 0.25s ease;
position: relative;
z-index: 2;
}

.policy-button:hover {
background: #00377d;
transform: translateY(-2px);
}

/* PROJECTS */

.projects {
padding: 90px 0;
background: #f8f8f4;
}

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

.project-card {
background: var(--white);
border-radius: 24px;
overflow: hidden;
box-shadow: var(--shadow);
display: flex;
flex-direction: column;
}

.project-image {
height: 220px;
overflow: hidden;
background: #eef3ee;
}

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

.project-content {
padding: 28px;
display: flex;
flex-direction: column;
flex: 1;
}

.project-content span {
display: block;
color: var(--green);
font-weight: 800;
font-size: 14px;
margin-bottom: 12px;
text-align: center;
}

.project-content h3 {
color: var(--blue);
font-size: 24px;
margin-bottom: 14px;
text-align: center;
}

.project-content p {
color: var(--gray);
line-height: 1.6;
margin-bottom: 22px;
}

.project-whatsapp-button {
margin-top: auto;
width: 100%;
min-height: 52px;
border: none;
border-radius: 14px;
background: var(--blue);
color: var(--white);
font-size: 15px;
font-weight: 800;
cursor: pointer;
transition: 0.25s ease;
box-shadow: 0 12px 30px rgba(0, 63, 143, 0.14);
}

.project-whatsapp-button:hover {
background: #00377d;
transform: translateY(-2px);
}

/* GALLERY TIMELINE */

.gallery {
padding: 95px 0;
background:
radial-gradient(circle at top left, rgba(246, 195, 59, 0.12), transparent 34%),
linear-gradient(180deg, #ffffff 0%, #f8f8f4 100%);
}

.timeline-gallery {
position: relative;
max-width: 1120px;
margin: 0 auto;
display: grid;
gap: 42px;
}

.timeline-gallery::before {
content: "";
position: absolute;
left: 32px;
top: 20px;
bottom: 20px;
width: 4px;
background: linear-gradient(180deg, var(--green), var(--blue));
border-radius: 999px;
}

.timeline-item {
position: relative;
display: grid;
grid-template-columns: 80px 1fr;
gap: 24px;
align-items: stretch;
}

.timeline-marker {
position: relative;
z-index: 3;
width: 68px;
height: 68px;
background: var(--blue);
color: var(--white);
border-radius: 50%;
display: grid;
place-items: center;
font-weight: 900;
box-shadow: 0 16px 34px rgba(0, 63, 143, 0.2);
}

.timeline-card {
background: var(--white);
border-radius: 34px;
padding: 34px;
display: grid;
grid-template-columns: 0.85fr 1.25fr;
gap: 30px;
align-items: center;
border: 1px solid rgba(0, 63, 143, 0.08);
box-shadow: 0 24px 60px rgba(0, 63, 143, 0.1);
overflow: hidden;
}

.timeline-content {
position: relative;
z-index: 2;
}

.gallery-event-date {
color: var(--green);
font-size: 14px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.6px;
margin-bottom: 14px;
}

.timeline-card h3 {
color: var(--blue);
font-size: clamp(28px, 3vw, 42px);
line-height: 1.1;
letter-spacing: -0.8px;
margin-bottom: 16px;
}

.gallery-event-text {
color: var(--gray);
font-size: 16px;
line-height: 1.7;
}

/* EVENT CAROUSELS */

.event-carousel {
position: relative;
height: 420px;
border-radius: 28px;
overflow: hidden;
background: #eef3ee;
box-shadow: 0 18px 45px rgba(0, 63, 143, 0.15);
}

.event-carousel-track,
.event-slide {
width: 100%;
height: 100%;
}

.event-slide {
position: absolute;
inset: 0;
opacity: 0;
transform: scale(1.03);
transition: opacity 0.65s ease, transform 0.95s ease;
}

.event-slide.active {
opacity: 1;
transform: scale(1);
z-index: 1;
}

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

.event-carousel::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 55%, rgba(0, 63, 143, 0.25));
z-index: 2;
pointer-events: none;
}

.event-carousel-btn {
position: absolute;
top: 50%;
z-index: 4;
width: 42px;
height: 42px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
color: var(--blue);
font-size: 30px;
cursor: pointer;
display: grid;
place-items: center;
transform: translateY(-50%);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
transition: 0.25s ease;
}

.event-carousel-btn:hover {
background: var(--blue);
color: var(--white);
}

.event-prev {
left: 18px;
}

.event-next {
right: 18px;
}

.event-carousel-count {
position: absolute;
right: 18px;
bottom: 18px;
z-index: 4;
background: rgba(0, 63, 143, 0.88);
color: var(--white);
padding: 9px 14px;
border-radius: 999px;
font-weight: 800;
font-size: 14px;
}

/* NEWS */

.news {
padding: 95px 0;
background: linear-gradient(180deg, #f8f8f4 0%, #ffffff 100%);
}

.featured-news {
max-width: 1100px;
margin: 0 auto;
background: var(--white);
border-radius: 34px;
padding: 42px;
display: grid;
grid-template-columns: 1.45fr 0.95fr;
gap: 36px;
align-items: center;
box-shadow: 0 24px 60px rgba(0, 63, 143, 0.12);
border: 1px solid rgba(0, 63, 143, 0.08);
position: relative;
overflow: hidden;
}

.featured-news::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 9px;
height: 100%;
background: linear-gradient(180deg, var(--green), var(--blue));
}

.featured-news-content {
position: relative;
z-index: 2;
}

.news-badge {
display: inline-flex;
align-items: center;
background: rgba(47, 148, 68, 0.11);
color: var(--green);
font-size: 14px;
font-weight: 800;
padding: 10px 18px;
border-radius: 999px;
margin-bottom: 22px;
}

.featured-news h3 {
color: var(--blue);
font-size: clamp(30px, 4vw, 46px);
line-height: 1.08;
letter-spacing: -1.1px;
margin-bottom: 20px;
max-width: 760px;
}

.featured-news p {
color: #333333;
font-size: 18px;
line-height: 1.75;
margin-bottom: 26px;
max-width: 800px;
}

.news-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 30px;
}

.news-tags span {
background: #fff7df;
color: #6f5400;
font-size: 14px;
font-weight: 800;
padding: 10px 14px;
border-radius: 999px;
}

.news-button {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--blue);
color: var(--white);
min-height: 56px;
padding: 0 30px;
border-radius: 16px;
font-weight: 800;
box-shadow: var(--shadow);
transition: 0.25s ease;
}

.news-button:hover {
background: #00377d;
}

.featured-news-image {
position: relative;
z-index: 2;
min-height: 390px;
border-radius: 28px;
overflow: hidden;
background: #f7f4ea;
box-shadow: 0 18px 45px rgba(0, 63, 143, 0.14);
border: 1px solid rgba(0, 63, 143, 0.08);
display: flex;
align-items: center;
justify-content: center;
}

.featured-news-image img {
width: 100%;
height: 100%;
object-fit: contain;
}

/* DONATION */

.donation-section {
padding: 90px 0;
background:
radial-gradient(circle at top left, rgba(246, 195, 59, 0.16), transparent 32%),
linear-gradient(180deg, #f8f8f4 0%, #ffffff 100%);
}

.donation-box {
text-align: center;
max-width: 820px;
}

.donation-label {
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(47, 148, 68, 0.11);
color: var(--green);
font-size: 14px;
font-weight: 900;
padding: 10px 18px;
border-radius: 999px;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.donation-box h2 {
color: var(--blue);
font-size: clamp(36px, 4vw, 52px);
margin-bottom: 18px;
}

.donation-box > p {
color: var(--gray);
font-size: 18px;
line-height: 1.7;
margin: 0 auto 30px;
max-width: 720px;
}

.donation-card {
max-width: 680px;
margin: 0 auto 30px;
background: var(--white);
border-radius: 28px;
padding: 28px;
display: flex;
align-items: center;
gap: 22px;
text-align: left;
box-shadow: 0 20px 55px rgba(0, 63, 143, 0.1);
border: 1px solid rgba(0, 63, 143, 0.08);
}

.donation-card-icon {
min-width: 68px;
width: 68px;
height: 68px;
display: grid;
place-items: center;
background: var(--blue);
color: var(--white);
font-size: 30px;
border-radius: 50%;
position: relative;
}

.donation-card-content h3 {
color: var(--blue);
font-size: 24px;
margin-bottom: 8px;
}

.donation-card-content p {
color: var(--gray);
line-height: 1.6;
}

.donation-pay-button {
margin-bottom: 18px;
}

.donation-box small {
display: block;
margin: 18px auto 0;
color: #666;
line-height: 1.6;
max-width: 680px;
}

/* CONTACT */

.contact {
padding: 90px 0;
background: var(--white);
}

.contact-box {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.contact-label {
display: inline-block;
color: var(--green);
font-weight: 800;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 13px;
}

.contact-info h2 {
color: var(--blue);
font-size: 42px;
margin-bottom: 18px;
}

.contact-info p {
color: var(--gray);
font-size: 18px;
line-height: 1.6;
margin-bottom: 24px;
}

.contact-info ul {
list-style: none;
}

.contact-info li {
margin-bottom: 14px;
color: #222;
line-height: 1.6;
}

/* REDES SOCIALES */

.social-follow {
margin-top: 34px;
padding: 28px;
border-radius: 26px;
background:
radial-gradient(circle at top right, rgba(246, 195, 59, 0.18), transparent 35%),
linear-gradient(180deg, #ffffff 0%, #f8f8f4 100%);
border: 1px solid rgba(0, 63, 143, 0.08);
box-shadow: 0 18px 45px rgba(0, 63, 143, 0.08);
}

.social-follow h3 {
color: var(--blue);
font-size: 25px;
line-height: 1.2;
margin-bottom: 12px;
}

.social-follow p {
color: var(--gray);
font-size: 16px;
line-height: 1.65;
margin-bottom: 22px;
}

.social-buttons {
display: flex;
flex-wrap: wrap;
gap: 14px;
}

.social-button {
min-height: 52px;
padding: 0 22px;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
color: var(--white);
font-weight: 900;
box-shadow: 0 14px 30px rgba(0, 63, 143, 0.14);
transition: 0.25s ease;
}

.social-button span {
width: 28px;
height: 28px;
display: grid;
place-items: center;
background: rgba(255, 255, 255, 0.18);
border-radius: 50%;
font-weight: 900;
}

.social-button:hover {
transform: translateY(-3px);
}

.facebook-button {
background: #1877f2;
}

.instagram-button {
background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-form {
background: #f8f8f4;
padding: 34px;
border-radius: 28px;
box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
width: 100%;
border: 1px solid #dddddd;
border-radius: 14px;
padding: 16px;
margin-bottom: 16px;
font-family: inherit;
font-size: 15px;
}

.contact-form textarea {
height: 140px;
resize: none;
}

.contact-form button {
width: 100%;
border: none;
background: var(--blue);
color: var(--white);
padding: 17px;
border-radius: 16px;
font-weight: 800;
cursor: pointer;
}

/* FOOTER */

.footer {
background: var(--blue);
color: var(--white);
padding: 28px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
gap: 20px;
font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
.nav {
gap: 20px;
font-size: 14px;
}

.btn-donar {
padding: 15px 22px;
}
}

@media (max-width: 950px) {
:root {
--header-height: 84px;
}

.header {
height: var(--header-height);
overflow: visible;
}

.menu-toggle {
display: flex;
align-items: center;
justify-content: center;
}

.logo img {
width: 118px;
max-height: 74px;
}

.nav {
position: fixed;
top: var(--header-height);
left: 0;
width: 100%;
background: var(--white);
flex-direction: column;
align-items: flex-start;
gap: 0;
padding: 20px 8%;
display: none;
box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
z-index: 1001;
border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav.show {
display: flex;
}

.nav a {
width: 100%;
padding: 16px 0;
font-size: 17px;
}

.nav a::after {
bottom: 8px;
}

.btn-donar {
display: none;
}

.hero-container,
.timeline-card,
.featured-news,
.contact-box,
.projects-grid {
grid-template-columns: 1fr;
}

.hero-content {
padding: 45px 0 20px;
}

.hero-carousel {
min-height: 430px;
border-radius: 30px;
}

.hero-carousel::before {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

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

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

.timeline-gallery::before {
left: 28px;
}

.timeline-item {
grid-template-columns: 68px 1fr;
gap: 16px;
}

.timeline-marker {
width: 60px;
height: 60px;
}

.timeline-card {
padding: 30px;
}

.event-carousel {
height: 360px;
}

.featured-news {
padding: 34px;
}

.featured-news-image {
min-height: 320px;
}

.footer-content {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 560px) {
:root {
--header-height: 78px;
}

.nav-container {
width: min(1180px, 88%);
}

.logo img {
width: 106px;
max-height: 68px;
}

.menu-toggle {
font-size: 34px;
padding: 10px;
margin-right: -6px;
}

.floating-contact {
right: 12px;
top: auto;
bottom: 18px;
transform: none;
flex-direction: row;
gap: 10px;
z-index: 850;
}

.floating-contact-btn {
width: 48px;
min-height: 48px;
font-size: 20px;
}

.floating-contact-btn:hover {
width: 48px;
transform: translateY(-3px);
}

.floating-contact-btn span {
display: none !important;
}

.hero-content h1 {
letter-spacing: -1px;
}

.hero-content p {
font-size: 17px;
}

.hero-buttons {
flex-direction: column;
}

.btn-primary,
.btn-secondary {
width: 100%;
}

.hero-carousel {
min-height: 360px;
}

.carousel-btn {
width: 38px;
height: 38px;
font-size: 28px;
}

.carousel-btn.prev {
left: 14px;
}

.carousel-btn.next {
right: 14px;
}

.carousel-dots {
right: 22px;
bottom: 20px;
}

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

.projects,
.gallery,
.news,
.contact,
.donation-section,
.about,
.policies {
padding: 60px 0;
}

.policy-card {
padding: 28px 22px;
border-radius: 24px;
}

.policy-top {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}

.policy-card h3 {
font-size: 22px;
}

.policy-card p {
font-size: 15px;
line-height: 1.65;
}

.policy-button {
width: 100%;
}

.project-content {
padding: 26px 24px;
}

.project-content h3 {
font-size: 23px;
}

.project-whatsapp-button {
min-height: 50px;
}

.social-follow {
padding: 24px 22px;
margin-top: 28px;
}

.social-follow h3 {
font-size: 22px;
}

.social-buttons {
flex-direction: column;
}

.social-button {
width: 100%;
}

.timeline-gallery::before {
display: none;
}

.timeline-item {
grid-template-columns: 1fr;
}

.timeline-marker {
width: 54px;
height: 54px;
}

.timeline-card {
padding: 24px;
border-radius: 26px;
}

.timeline-card h3 {
font-size: 27px;
}

.gallery-event-date {
font-size: 12px;
}

.gallery-event-text {
font-size: 15px;
}

.event-carousel {
height: 300px;
border-radius: 22px;
}

.event-carousel-btn {
width: 36px;
height: 36px;
font-size: 26px;
}

.event-prev {
left: 12px;
}

.event-next {
right: 12px;
}

.featured-news {
padding: 28px 24px;
border-radius: 26px;
}

.featured-news h3 {
letter-spacing: -0.6px;
}

.featured-news p {
font-size: 16px;
}

.news-button {
width: 100%;
text-align: center;
}

.featured-news-image {
min-height: 260px;
}

.donation-card {
flex-direction: column;
text-align: center;
}

.donation-box h2,
.contact-info h2 {
font-size: 34px;
}
}