/* ================================================
   ESTILOS PREMIUM PARA GOOGLE BUSINESS
   ================================================ */

.google-business {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
}

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

.google-business-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Contenedor del mapa */
.google-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.google-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.google-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Información lateral */
.google-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-info,
.contact-info {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-info:hover,
.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.location-info h3,
.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-info h3 i,
.contact-info h3 i {
    color: var(--accent-color);
    font-size: 1.75rem;
}

.location-info p,
.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Botones de acción */
.google-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-actions .primary-btn,
.google-actions .secondary-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.google-actions .primary-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.google-actions .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.google-actions .primary-btn i {
    font-size: 1.25rem;
}

.google-actions .secondary-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.google-actions .secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 73, 101, 0.3);
}

.google-actions .secondary-btn i {
    font-size: 1.25rem;
}

/* Badge de verificación */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.verified-badge i {
    font-size: 1rem;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    .google-business-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .google-map iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .google-business {
        padding: 60px 0;
    }

    .google-business .section-title {
        font-size: 2rem;
    }

    .google-map iframe {
        height: 350px;
    }

    .location-info,
    .contact-info,
    .google-actions {
        padding: 1.5rem;
    }

    .location-info h3,
    .contact-info h3 {
        font-size: 1.3rem;
    }

    .location-info p,
    .contact-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .google-business .section-title {
        font-size: 1.75rem;
    }

    .google-map iframe {
        height: 300px;
    }

    .location-info,
    .contact-info,
    .google-actions {
        padding: 1.25rem;
    }

    .google-actions .primary-btn,
    .google-actions .secondary-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ================================================
   ESTILOS PARA EL FOOTER
   ================================================ */

footer {
    background: linear-gradient(135deg, #1B4965 0%, #0d2438 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(98, 182, 203, 0.4);
}

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

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.address-line {
    display: block;
    margin-left: 1.5rem;
}

/* Sección legal */
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.development-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Sección UE */
.footer-eu {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.eu-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.eu-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.eu-images img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.eu-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ================================================
   RESPONSIVE FOOTER
   ================================================ */

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .footer-eu {
        padding: 1.5rem;
    }

    .eu-images {
        gap: 1rem;
    }

    .eu-images img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-contact-info p {
        font-size: 0.9rem;
    }

    .eu-images img {
        max-height: 40px;
    }
}