/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --color-verde: #2d5016;
    --color-verde-claro: #4a7c2a;
    --color-verde-muy-claro: #6b9f3d;
    --color-blanco: #ffffff;
    --color-rojo: #c8102e;
    --color-gris-oscuro: #2c2c2c;
    --color-gris-claro: #f5f5f5;
    --color-gris-medio: #e0e0e0;
    --color-texto: #333333;
    --color-texto-claro: #666666;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--color-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--color-blanco);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
    transition: var(--transition);
}

.logo-accent {
    color: var(--color-rojo);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-texto);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-verde);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-verde);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp-header {
    background: #25D366;
    color: var(--color-blanco);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.btn-whatsapp-header:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-verde);
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.whatsapp-float svg {
    color: var(--color-blanco);
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background-image: url('image/Jardineria F.P Horizontal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-blanco);
    padding: 4rem 0;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-rojo);
    color: var(--color-blanco);
}

.btn-primary:hover {
    background: #a00d25;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--color-blanco);
    color: var(--color-verde);
    border: 2px solid var(--color-blanco);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--color-blanco);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-verde);
}

.section-subtitle {
    text-align: center;
    color: var(--color-texto-claro);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICIOS SECTION
   ============================================ */
.servicios {
    background: var(--color-gris-claro);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servicio-card {
    background: var(--color-blanco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-verde);
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-verde);
}

.servicio-card h3 {
    color: var(--color-verde);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.servicio-card p {
    color: var(--color-texto-claro);
    line-height: 1.8;
}

/* ============================================
   POR QUÉ ELEGIRNOS SECTION
   ============================================ */
.por-que-elegirnos {
    background: var(--color-blanco);
}

.elegirnos-content {
    margin-top: 3rem;
}

.elegirnos-quote {
    text-align: center;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-verde);
    margin-bottom: 3rem;
    font-weight: 500;
    padding: 2rem;
    background: var(--color-gris-claro);
    border-radius: 15px;
    border-left: 5px solid var(--color-rojo);
}

.elegirnos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.elegirnos-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.elegirnos-item:hover {
    transform: translateY(-5px);
}

.elegirnos-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    color: var(--color-verde);
    display: flex;
    align-items: center;
    justify-content: center;
}

.elegirnos-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-verde);
}

.elegirnos-item h3 {
    color: var(--color-verde);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.elegirnos-item p {
    color: var(--color-texto-claro);
    line-height: 1.8;
}

/* ============================================
   MARKETING SECTION
   ============================================ */
.marketing {
    background: linear-gradient(135deg, var(--color-gris-claro) 0%, var(--color-blanco) 100%);
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-card {
    background: var(--color-blanco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--color-verde);
}

.marketing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-rojo);
}

.marketing-card h3 {
    color: var(--color-verde);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.marketing-card p {
    color: var(--color-texto-claro);
    line-height: 1.8;
}

/* ============================================
   GALERÍA SECTION
   ============================================ */
.galeria {
    background: var(--color-blanco);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.galeria-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 1;
    cursor: pointer;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-verde-claro) 0%, var(--color-verde) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blanco);
    font-size: 1.2rem;
    font-weight: 500;
}

.galeria-note {
    text-align: center;
    color: var(--color-texto-claro);
    font-style: italic;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* ============================================
   REDES SECTION
   ============================================ */
.redes {
    background: var(--color-gris-claro);
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.red-social-card {
    background: var(--color-blanco);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--color-texto);
    transition: var(--transition);
    display: block;
}

.red-social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.red-social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-social-icon svg {
    width: 100%;
    height: 100%;
}

.red-social-icon.instagram {
    color: #E4405F;
}

.red-social-icon.instagram svg {
    fill: #E4405F;
}

.red-social-icon.facebook {
    color: #1877F2;
}

.red-social-card h3 {
    color: var(--color-verde);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.red-social-card p {
    color: var(--color-texto-claro);
}

/* ============================================
   CONTACTO SECTION
   ============================================ */
.contacto {
    background: var(--color-blanco);
}

.contacto-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    width: 100%;
}

.info-item {
    background: var(--color-gris-claro);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--color-verde);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-icon svg[fill="currentColor"] {
    fill: var(--color-verde);
}

.info-icon svg[stroke="currentColor"] {
    stroke: var(--color-verde);
}

.info-item h3 {
    color: var(--color-verde);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-item p {
    color: var(--color-texto-claro);
    font-size: 1.1rem;
    margin: 0;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.contacto-form {
    background: var(--color-gris-claro);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-verde);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-gris-medio);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-verde);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.mapa-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mapa-container iframe {
    width: 100%;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-gris-oscuro);
    color: var(--color-blanco);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo .logo-accent {
    color: var(--color-rojo);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-redes h4 {
    color: var(--color-blanco);
    margin-bottom: 1rem;
}

.footer-redes-links {
    display: flex;
    gap: 1.5rem;
}

.footer-redes-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 50%;
}

.footer-redes-links a svg {
    width: 24px;
    height: 24px;
}

.footer-redes-links a:hover {
    color: var(--color-blanco);
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .header-content {
        padding: 0.9rem 0;
    }

    .logo-img {
        height: 60px;
        max-width: 220px;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 220px;
    }

    .nav-list {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: var(--color-blanco);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 1.5rem;
    }

    .nav-list.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .btn-whatsapp-header {
        display: none;
    }

    .hero {
        min-height: 85vh;
        margin-top: 75px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .elegirnos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .contacto-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo-img {
        height: 55px;
        max-width: 200px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MÓVIL
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 180px;
    }

    .hero {
        min-height: 75vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .servicios-grid,
    .elegirnos-grid,
    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .servicio-card,
    .elegirnos-item,
    .marketing-card {
        padding: 2rem 1.5rem;
    }

    .servicio-card h3,
    .elegirnos-item h3,
    .marketing-card h3 {
        font-size: 1.4rem;
    }

    .servicio-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .elegirnos-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .elegirnos-quote {
        font-size: 1.5rem;
        padding: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .redes-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .red-social-card {
        padding: 2.5rem 1.5rem;
    }

    .red-social-icon {
        width: 70px;
        height: 70px;
    }

    .contacto-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 55px;
        height: 55px;
    }

    .footer {
        padding: 2.5rem 0 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 180px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MÓVIL PEQUEÑO
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .header-content {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 45px;
        max-width: 160px;
    }

    .footer-logo-img {
        height: 45px;
        max-width: 160px;
    }

    .hero {
        min-height: 70vh;
        margin-top: 65px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .btn {
        max-width: 260px;
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 0.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .servicios-grid,
    .elegirnos-grid,
    .marketing-grid {
        gap: 1.2rem;
    }

    .servicio-card,
    .marketing-card,
    .elegirnos-item {
        padding: 1.5rem 1.2rem;
    }

    .servicio-card h3,
    .elegirnos-item h3,
    .marketing-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }

    .servicio-card p,
    .elegirnos-item p,
    .marketing-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .servicio-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .elegirnos-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.8rem;
    }

    .elegirnos-quote {
        font-size: 1.3rem;
        padding: 1.5rem 1.2rem;
        margin-bottom: 2rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .red-social-card {
        padding: 2rem 1.2rem;
    }

    .red-social-card h3 {
        font-size: 1.3rem;
    }

    .red-social-icon {
        width: 65px;
        height: 65px;
    }

    .contacto-info {
        gap: 1.2rem;
    }

    .info-item {
        padding: 1.5rem 1.2rem;
    }

    .info-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 45px;
        max-width: 160px;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-redes h4 {
        font-size: 1.1rem;
    }

    .footer-redes-links {
        gap: 1.2rem;
    }

    .footer-redes-links a {
        width: 38px;
        height: 38px;
    }

    .footer-redes-links a svg {
        width: 22px;
        height: 22px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}




