/* Custom properties for scout theme */
:root {
    --primary-color: #0b2b5d; /* Scout Navy Blue */
    --primary-light: #1b4b9b;
    --primary-dark: #071b3b;
    --secondary-color: #f7a80b; /* Scout Yellow/Orange */
    --secondary-hover: #e09400;
    
    --accent-red: #e31837;
    --accent-green: #297a38;
    --accent-blue: #0072ce;
    --accent-yellow: #ffd100;
    
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --bg-main: #ffffff;
    --bg-alt: #f1f5f9;
    --bg-dark: #0f172a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* offset for fixed header */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Typography styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left-align {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-header.left-align h2::after {
    left: 0;
    transform: translateX(0);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-main);
    border: 2px solid var(--bg-main);
}

.btn-secondary:hover {
    background-color: var(--bg-main);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-main);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Effects */
.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: inherit;
    z-index: -1;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0.6;
    transition: var(--transition);
}

.glow-effect:hover::before {
    filter: blur(12px);
    opacity: 0.8;
}

/* Animations setup */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.25rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: var(--bg-main);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.navbar.scrolled .nav-links li a {
    color: var(--text-main);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-cta {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

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

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-links li a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-cta {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-main);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    /* If there was an image, we would use it here */
    /* background-image: url('hero-image.jpg'); background-size: cover; background-position: center; */
    z-index: -2;
}

/* Adding dynamic generated background effect */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(247, 168, 11, 0.2) 0%, transparent 40%),
                      radial-gradient(circle at 80% 60%, rgba(42, 157, 143, 0.2) 0%, transparent 40%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out forwards;
}

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

.scout-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-logo-wrapper {
    margin-top: 5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--bg-main);
    padding: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--bg-main);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--bg-main);
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Sections Base */
.section {
    padding: 6rem 0;
}

.dark-bg {
    background-color: var(--bg-alt);
}

/* Novedades */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    height: 200px;
    position: relative;
    background-color: var(--bg-alt);
}

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

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-main);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    color: var(--secondary-color);
}

.banner-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--bg-main);
    text-align: center;
    justify-content: center;
}

.banner-content {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.icon-pulse {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* animation: pulse 2s infinite; */
}

.banner-icon {
    font-size: 3rem;
    color: var(--bg-main);
}

.banner-content h3 {
    color: var(--bg-main);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.banner-content p {
    color: var(--bg-main);
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Sobre Nosotros */
.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--bg-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background-color: var(--secondary-color);
    transform: rotate(10deg);
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nosotros-visual {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--secondary-color), #ffcf54);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.photo-card {
    position: absolute;
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
    transition: var(--transition-slow);
}

.photo-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}

.photo-icon {
    font-size: 3rem;
    color: var(--primary-light);
}

.photo-card p {
    font-weight: 600;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 220px;
    transform: rotate(-5deg);
}

.card-2 {
    bottom: 5%;
    left: 20%;
    width: 180px;
    height: 200px;
    transform: rotate(8deg);
}

.card-3 {
    top: 30%;
    right: 5%;
    width: 220px;
    height: 240px;
    transform: rotate(3deg);
}

/* Galería Histórica */
.galeria {
    background-color: var(--bg-main);
}

.gallery-info {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.gallery-info p {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08); /* Modern subtle zoom instead of whole box scaling */
}

@media (min-width: 768px) {
    .item-tall {
        grid-row: span 2;
    }
    .item-wide {
        grid-column: span 2;
    }
}

/* Galería Histórica */
.galeria {
    background-color: var(--bg-main);
}

.gallery-info {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.gallery-info p {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08); /* Modern subtle zoom instead of whole box scaling */
}

@media (min-width: 768px) {
    .item-tall {
        grid-row: span 2;
    }
    .item-wide {
        grid-column: span 2;
    }
}

/* Ramas */
.ramas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.rama-card {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid transparent;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 1.34rem);
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.rama-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
}

.rama-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.rama-card.manada { border-top-color: #ffd100; }
.rama-card.scout { border-top-color: #00a54f; }
.rama-card.caminantes { border-top-color: #0072ce; }
.rama-card.rovers { border-top-color: #e31837; }
.rama-card.educadores { border-top-color: #6c2b8c; }

.rama-image {
    width: 100%;
    height: 180px;
    position: relative;
    background-color: var(--bg-alt);
}

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

.rama-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-main);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-main);
}

.manada .rama-icon { background-color: #ffd100; color: var(--primary-color); }
.scout .rama-icon { background-color: #00a54f; }
.caminantes .rama-icon { background-color: #0072ce; }
.rovers .rama-icon { background-color: #e31837; }
.educadores .rama-icon { background-color: #6c2b8c; color: var(--bg-main); }

.rama-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.age-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-alt);
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.rama-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contacto & Mapa */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bg-main);
}

.icon-whatsapp { background-color: #25D366; }
.icon-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-facebook { background-color: #1877F2; }

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.schedule-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
}

.schedule-card h4 {
    color: var(--bg-main);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-main);
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-main);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-cta h3 {
    color: var(--bg-main);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-cta p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.btn-footer {
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.scout-motto {
    font-weight: 600;
    color: #cbd5e1 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nosotros-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nosotros-visual {
        min-height: 400px;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .section {
        padding: 4rem 0;
    }

    .shape-blob {
        width: 250px;
        height: 250px;
    }

    .photo-card {
        padding: 1rem;
    }

    .contact-map {
        min-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}
