:root {
    --primary-color: #000000;
    --secondary-color: #d4af37; /* Gold */
    --secondary-light: #f5d76e;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f0f2f5;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main > section:only-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Utils */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.logo-area:hover .logo-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: rotate(15deg);
}

.logo-text {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

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

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

.main-nav a.active {
    color: var(--secondary-color);
}

/* Contact Buttons in Header */
.header-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: transparent;
}

.phone-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (Inicio) */
.hero-section {
    background-color: var(--bg-white);
    padding: 6rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    letter-spacing: 3px;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.contact-info-hero {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-top: 4px solid var(--secondary-color);
}

.contact-info-hero p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #444;
}

.contact-info-hero .separator {
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 1.5rem auto;
}

.contact-info-hero i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-info-hero .phones {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
    margin-top: auto;
}

main:has(.map-section) > section:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-section iframe,
#map {
    width: 100%;
    height: 35vh;
    min-height: 250px;
    max-height: 400px;
    border: none;
}

.map-logo-marker {
    background: none !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.map-logo-marker i {
    color: var(--secondary-color);
}

.leaflet-popup-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}

.leaflet-popup-content strong {
    color: var(--primary-color);
}

.leaflet-popup-content-wrapper {
    border-radius: 6px;
}

/* Generic Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.contact-info-block {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info-block h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid #eaeaea;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    z-index: -1;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info, .contact-info-block {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info h3, .contact-info-block h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
    white-space: nowrap;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #ccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: var(--bg-white);
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo .logo-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    border-width: 3px;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.inforgraft-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.inforgraft-link:hover {
    color: var(--text-light);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* Responsive Breakpoints */

/* Adaptación para pantallas de baja altura (Laptops de 1080x765) */
@media (max-height: 800px) {
    .header-container {
        padding: 0.5rem 2rem;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .logo-text {
        font-size: 1rem;
    }
    .hero-section {
        padding: 2rem 1rem 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 0.2rem;
    }
    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .contact-info-hero {
        padding: 1rem 1.5rem;
    }
    .contact-info-hero p {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    .contact-info-hero .separator {
        margin: 1rem auto;
    }
    #map {
        height: 28vh;
        min-height: 200px;
    }
    footer {
        padding: 1rem 2rem 2rem;
    }
    .footer-container {
        gap: 2rem;
        margin-bottom: 1rem;
    }
    .footer-bottom {
        padding-top: 1rem;
    }
}

@media (max-width: 1200px) {
    .header-container {
        padding: 1rem 2rem;
    }
    .main-nav ul {
        gap: 1rem; /* Reducir gap en el menú para pantallas medianas */
    }
    .main-nav a {
        font-size: 0.85rem;
    }
    .phone-btn {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    /* Activar menú móvil en tablets para evitar que el header se rompa */
    .header-container {
        padding: 1rem 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .main-nav.open {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .header-contact .phone-btn {
        display: none; 
    }

    .about-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        word-break: break-word;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .contact-info-hero {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
        width: auto;
    }

    .contact-info-hero p {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.95rem;
        text-align: center;
    }

    .contact-info-hero .phones {
        font-size: 1rem;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        max-width: 100%;
    }

    .about-image {
        padding: 0 1rem;
    }

    .contact-info, .contact-info-block {
        padding: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-form {
        padding: 1.5rem;
    }

    footer {
        padding: 2rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-info-hero {
        padding: 1rem;
        margin: 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Adaptación específica para altura 768px (portátiles 1366x768) */
@media (max-height: 768px) {
    .header-container {
        padding: 0.3rem 1.5rem;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .logo-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .main-nav a {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    .phone-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    .hero-section {
        padding: 1rem 1rem 0.8rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.1rem;
    }
    .hero-content .subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .contact-info-hero {
        padding: 0.6rem 1rem;
        max-width: 450px;
    }
    .contact-info-hero p {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    .contact-info-hero .separator {
        margin: 0.5rem auto;
        width: 30px;
    }
    .contact-info-hero .phones {
        font-size: 0.9rem;
    }
    #map {
        height: 22vh;
        min-height: 150px;
    }
    .section-container {
        padding: 2rem 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .services-grid {
        gap: 1rem;
    }
    .service-card {
        padding: 1.2rem 1rem;
    }
    .service-card i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .about-content {
        gap: 1.5rem;
    }
    .about-text h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .about-text p {
        font-size: 0.85rem;
    }
    .image-placeholder {
        max-width: 200px;
        font-size: 3rem;
    }
    .contact-grid {
        gap: 1.5rem;
    }
    .contact-info, .contact-info-block {
        padding: 1.5rem;
    }
    .contact-info h3, .contact-info-block h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        white-space: normal;
    }
    .info-item {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    .info-item i {
        font-size: 1.2rem;
    }
    .info-item h4 {
        font-size: 0.9rem;
    }
    .info-item p {
        font-size: 0.8rem;
    }
    .contact-form {
        padding: 1.5rem;
        gap: 1rem;
    }
    .form-group input, .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    footer {
        padding: 1rem 1.5rem 2rem;
    }
    .footer-container {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    .footer-logo .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    .footer-bottom {
        padding-top: 0.8rem;
        font-size: 0.8rem;
    }
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Pantallas muy grandes (>1920px): evitar separación entre mapa y footer */
@media (min-width: 1921px) {
    main > section:only-child,
    main:has(.map-section) > section:first-child {
        flex: 1;
        justify-content: center;
    }
    .hero-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    #map {
        height: 40vh;
        max-height: 500px;
    }
}

/* Adaptación para altura >= 800px: contenido completo en vista sin scroll */
@media (min-height: 800px) {
    .main-header {
        padding: 0;
    }
    .header-container {
        padding: 0.3rem 2rem;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    .logo-text {
        font-size: 0.9rem;
    }
    .hero-section {
        padding: 2rem 2rem 1.5rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    .hero-content .subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 0.5rem;
    }
    .contact-info-hero {
        padding: 0.5rem 1rem;
        max-width: 450px;
    }
    .contact-info-hero p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        gap: 0.3rem;
    }
    .contact-info-hero .phones {
        font-size: 0.9rem;
    }
    .contact-info-hero .separator {
        margin: 0.4rem auto;
        width: 30px;
    }
    #map {
        height: 20vh;
        min-height: 150px;
        max-height: 200px;
    }
    .section-container {
        padding: 2rem 2rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        margin: 1rem auto 1.5rem;
    }
    .services-grid {
        gap: 1rem;
    }
    .service-card {
        padding: 1rem 1rem;
    }
    .service-card i {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    .service-card h3 {
        font-size: 0.9rem;
    }
    .about-content {
        gap: 1.5rem;
    }
    .about-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .about-text p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    .image-placeholder {
        max-width: 160px;
        font-size: 2.5rem;
    }
    .contact-grid {
        gap: 1.5rem;
    }
    .contact-info, .contact-info-block {
        padding: 1.2rem;
    }
    .contact-info h3, .contact-info-block h2 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        white-space: normal;
    }
    .info-item {
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    .info-item i {
        font-size: 1.1rem;
    }
    .info-item h4 {
        font-size: 0.85rem;
    }
    .info-item p {
        font-size: 0.8rem;
    }
    .contact-form {
        padding: 1rem;
        gap: 0.5rem;
    }
    .form-group input, .form-group textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    .form-group textarea {
        min-height: 60px;
    }
    .submit-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    footer {
        padding: 0.5rem 2rem 1.5rem;
    }
    .footer-container {
        gap: 1rem;
        margin-bottom: 0.3rem;
    }
    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.85rem;
    }
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
