/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mejoras para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .btn, .service-card, .project-card, .testimonial, .team-member, .blog-article {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active, .service-card:active, .project-card:active, .testimonial:active, .team-member:active, .blog-article:active {
        transform: scale(0.98);
    }
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #23272f;
    background: #f6f8fa;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumb {
    background: #fff;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e1e5e9;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0;
}
.breadcrumb a {
    color: #00bfae;
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover {
    color: #16213e;
}
.breadcrumb span {
    color: #6b7280;
}

/* Header */
header#main-header {
    background: #16213e;
    color: #fff;
    padding: 2rem 0;
    border-bottom: 2px solid #00bfae;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(22, 33, 62, 0.97);
}

/* Menú móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00bfae;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s ease;
}
#logo:hover {
    color: #fff;
}
#main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
#main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}
#main-nav a.active, #main-nav a[aria-current="page"] {
    color: #00bfae;
}
#main-nav a:hover {
    color: #00bfae;
}
#main-nav a.active::after, #main-nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00bfae;
}

/* Hero */
.hero-section {
    background: linear-gradient(120deg, #00bfae 0%, #16213e 100%);
    color: #fff;
    padding: 8rem 0 6rem 0;
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 400;
    color: #eafaf7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Botones */
.btn {
    display: inline-block;
    background: #00bfae;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid #00bfae;
    cursor: pointer;
}
.btn-primary {
    background: #00bfae;
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #00bfae;
    border: 1px solid #00bfae;
}
.btn:hover {
    background: #16213e;
    color: #fff;
    transform: translateY(-1px);
    border-color: #16213e;
}
.btn-secondary:hover {
    background: #00bfae;
    color: #fff;
}

/* Secciones */
.alt-bg {
    background: #eafaf7;
}
section {
    padding: 6rem 0;
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #16213e;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}
.link {
    color: #00bfae;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #00bfae;
    transition: all 0.2s ease;
}
.link:hover {
    color: #16213e;
    border-bottom-color: #16213e;
}

/* Servicios */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.services-list li {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    min-width: 200px;
    flex: 1 1 250px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}
.services-list li:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Servicios Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 3rem;
    transition: all 0.2s ease;
}
.service-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.service-card .service-icon {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}
.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: left;
}
.service-features {
    list-style: none;
    margin-top: 1.5rem;
}
.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}
.service-features li:last-child {
    border-bottom: none;
}

/* Proyectos */
.projects-gallery-preview, .projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.project-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.2s ease;
}
.project-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.project-card:hover img {
    transform: scale(1.02);
}
.project-card figcaption {
    padding: 2rem;
}
.project-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
}
.project-category {
    color: #999;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.project-tech span {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonios */
#testimonials, #testimonials-preview {
    background: #fafafa;
    padding: 6rem 0;
}
.testimonials-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}
.testimonial {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}
.testimonial:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e5e5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.testimonial blockquote {
    font-style: normal;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}
.testimonial cite {
    display: block;
    color: #666;
    font-style: normal;
    font-weight: 500;
    font-size: 0.875rem;
}
.testimonial-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonial-stats span {
    background: #f5f5f5;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Equipo */
.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.team-member {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}
.team-member:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e5e5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.team-member h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.team-role {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Misión y Visión */
.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}
.mision, .vision {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 3rem;
    transition: all 0.2s ease;
}
.mision:hover, .vision:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Blog */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.blog-article {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.2s ease;
}
.blog-article:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}
.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.blog-article:hover .blog-thumbnail {
    transform: scale(1.02);
}
.blog-content {
    padding: 2.5rem;
}
.blog-content h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
}
.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #999;
}
.blog-meta .date {
    color: #666;
    font-weight: 500;
}
.blog-meta .author {
    color: #999;
}
.blog-meta .category {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
    padding: 2rem;
    transition: all 0.2s ease;
}
.faq-item:hover {
    border-color: #1a1a1a;
}
.faq-question {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}
.faq-answer {
    color: #666;
    line-height: 1.6;
}
.faq-answer ul, .faq-answer ol {
    margin: 1rem 0 1rem 1.5rem;
}
.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
.contact-details {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 3rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}
.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    opacity: 0.7;
}
.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.contact-item a:hover {
    color: #666;
}
.contact-form-container {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 3rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Mapa */
.map-placeholder {
    width: 100%;
    max-width: 700px;
    height: 400px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.map-content {
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
}
.map-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Footer */
#main-footer {
    background: #16213e;
    color: #fff;
    padding: 4rem 0 2rem 0;
    margin-top: 6rem;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00bfae;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: #00bfae;
}
.footer-contact {
    font-size: 0.875rem;
    color: #eafaf7;
    line-height: 1.8;
}
.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #b0b8c1;
    padding-top: 2rem;
    border-top: 1px solid #23305a;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .projects-gallery-preview, .projects-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    #main-nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    section {
        padding: 4rem 0;
    }
    section h2 {
        font-size: 2rem;
    }
    .mision-vision-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .team-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .projects-gallery-preview, .projects-gallery {
        grid-template-columns: 1fr;
    }
    .blog-list {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    #logo {
        font-size: 1.5rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    #main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #16213e;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid #00bfae;
    }
    #main-nav.active {
        transform: translateY(0);
    }
    #main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    #main-nav a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    #main-nav a:last-child {
        border-bottom: none;
    }
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    section {
        padding: 3rem 0;
    }
    section h2 {
        font-size: 1.75rem;
    }
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .services-list li {
        flex: 1 1 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .team-list {
        grid-template-columns: 1fr;
    }
    .testimonial {
        padding: 1.5rem;
    }
    .contact-details {
        padding: 1.5rem;
    }
    .map-placeholder {
        height: 300px;
    }
    .map-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }
    section h2 {
        font-size: 1.5rem;
    }
    .service-card, .project-card, .testimonial, .team-member, .blog-article {
        padding: 1.5rem;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
    .map-placeholder {
        height: 250px;
    }
    .map-content {
        padding: 1.5rem;
    }
    .breadcrumb {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.popup-content {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    border-radius: 0;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #1a1a1a;
}

.popup-content h2 {
    color: #16213e;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.popup-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.popup-content ul, .popup-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.popup-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .popup-content {
        padding: 1.5rem;
        margin: 10px;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 33, 62, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 1001;
    backdrop-filter: blur(10px);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #00bfae;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
} 

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-size: 2rem;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08);
    color: #fff;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);}
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);}
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);}
}
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}