* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    margin: 0 auto;
    padding: 40px 20px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
}

nav {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
#hero-container {
    background-image: linear-gradient(rgba(30, 60, 114, 0.7), rgba(42, 82, 152, 0.7)), url('./img/hero-img.jpg');
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

#hero {
    background-color: transparent;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

#hero h1 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

#hero .sub {
    color: #F1C40F;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#hero ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#hero ul li {
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

#hero ul li::before {
    content: "✓";
    background-color: #F1C40F;
    color: #1e3c72;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

#hero button {
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    color: #1e3c72;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    margin-right: 15px;
    margin-top: 10px;
}

#hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.6);
    background: linear-gradient(135deg, #f39c12 0%, #F1C40F 100%);
}

#hero button:active {
    transform: translateY(-1px);
}

/* Services Section */
#services {
    background-color: #fff;
    padding: 60px 20px;
}

#services h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

#services h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    border-radius: 2px;
}

#services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#services ul li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #F1C40F;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}

#services ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

#services ul li h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 12px;
    font-weight: 600;
}

#services ul li p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Coverage Section */
#coverage {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 20px;
}

#coverage h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

#coverage p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

#coverage button {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px;
    backdrop-filter: blur(10px);
}

#coverage button:hover {
    background-color: #F1C40F;
    color: #1e3c72;
    border-color: #F1C40F;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
}

#coverage {
    text-align: center;
}

/* Reviews Section */
#reviews {
    background-color: #fff;
    padding: 60px 20px;
}

#reviews h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

#reviews h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    border-radius: 2px;
}

#reviews .section-content > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #F1C40F;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "\201D";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: #F1C40F;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: #f39c12;
}

.review-card .stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #F1C40F;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-card .review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.review-card .review-author {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(30, 60, 114, 0.1);
}

.review-card .review-author span {
    font-weight: 600;
    color: #1e3c72;
    font-size: 1rem;
}

/* Urgencies Section */
#urgencies {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
}

#urgencies h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

#urgencies h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 30px;
    text-align: center;
}

#urgencies ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

#urgencies ul li {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    border-left: 4px solid #F1C40F;
}

#urgencies ul li strong {
    color: #1e3c72;
}

/* FAQ Section */
#faq {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#faq h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

#faq h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    border-radius: 2px;
}

#faq > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#faq h3 {
    font-size: 1.4rem;
    color: #2a5298;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

#faq p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

#contact button {
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    color: #1e3c72;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    margin: 10px;
}

#contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.6);
}

#contact p {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Map Section */
.map-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #F1C40F;
}

footer p {
    margin: 10px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

footer p:hover {
    opacity: 1;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #F1C40F;
    opacity: 1;
}

.button-link {
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    color: #1e3c72;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    margin-right: 15px;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    min-height: 44px;
    line-height: 1.4;
}

.button-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.6);
}

.button-link:active {
    transform: translateY(-1px);
}

.button-link:focus {
    outline: 2px solid #F1C40F;
    outline-offset: 2px;
}

.button-link-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-link-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.button-link-whatsapp:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.button-whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

a {
    text-decoration: none;    
    color: inherit;           
  }

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn-call {
    background: linear-gradient(135deg, #F1C40F 0%, #f39c12 100%);
    color: #1e3c72;
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn-icon img.whatsapp-icon {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.floating-btn-text {
    display: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Hover states */
.floating-btn-call:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn-call:hover .floating-btn-text {
    display: block;
}

.floating-btn-whatsapp:hover {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn-whatsapp:hover .floating-btn-text {
    display: none !important;
}

/* Responsive Design */

/* Mobile Navigation Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
}

/* Large screens */
@media (min-width: 1400px) {
    .section-content {
        max-width: 1400px;
    }
    
    #hero {
        max-width: 1400px;
    }
}

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 40px 20px;
    }
    
    #services ul {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    #reviews .section-content > div {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: relative;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
        border-radius: 0;
        text-align: left;
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    /* Hero Section */
    #hero-container {
        height: auto;
        min-height: 500px;
    }
    
    #hero {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }
    
    #hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    #hero .sub {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    #hero p {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    #hero ul {
        margin: 15px 0 25px 0;
        align-items: flex-start;
    }
    
    #hero ul li {
        font-size: 0.95rem;
    }
    
    .button-link {
        display: inline-block;
        width: 100%;
        max-width: 300px;
        margin: 8px auto;
        text-align: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .button-whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Services Section */
    #services {
        padding: 40px 15px;
    }
    
    #services h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    #services ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #services ul li {
        padding: 20px;
    }
    
    #services ul li h3 {
        font-size: 1.2rem;
    }
    
    #services ul li p {
        font-size: 0.95rem;
    }
    
    /* Coverage Section */
    #coverage {
        padding: 40px 15px;
    }
    
    #coverage h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    #coverage p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    #coverage button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 8px auto;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Reviews Section */
    #reviews {
        padding: 40px 15px;
    }
    
    #reviews h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    #reviews .section-content > div {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-card .review-text {
        font-size: 1rem;
    }
    
    /* Urgencies Section */
    #urgencies {
        padding: 40px 15px;
    }
    
    #urgencies h2 {
        font-size: 2rem;
    }
    
    #urgencies h3 {
        font-size: 1.5rem;
    }
    
    #urgencies ul li {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* FAQ Section */
    #faq {
        padding: 40px 15px;
    }
    
    #faq h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    #faq h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }
    
    #faq p {
        font-size: 1rem;
    }
    
    /* Contact Section */
    #contact {
        padding: 40px 15px;
    }
    
    #contact h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    #contact .button-link {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 8px auto;
    }
    
    #contact p {
        font-size: 1rem;
        margin-top: 25px;
    }
    
    /* Footer */
    footer {
        padding: 30px 15px;
    }
    
    footer h3 {
        font-size: 1.3rem;
    }
    
    footer p {
        font-size: 0.9rem;
    }
    
    /* Map iframe */
    .map-container iframe {
        height: 300px !important;
    }
    
    /* Floating buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
    
    .floating-btn-icon {
        font-size: 1.3rem;
    }
    
    .floating-btn-icon img.whatsapp-icon {
        width: 90%;
        height: 90%;
    }
    
    .floating-btn-whatsapp:hover {
        width: 56px;
        padding: 0;
        border-radius: 50%;
    }
    
    /* General */
    .container {
        padding: 30px 15px;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.75rem;
    }
    
    #hero .sub {
        font-size: 1.1rem;
    }
    
    #hero p {
        font-size: 0.9rem;
    }
    
    #hero ul li {
        font-size: 0.9rem;
    }
    
    .button-link {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .button-whatsapp-icon {
        width: 16px;
        height: 16px;
    }
    
    #services h2,
    #coverage h2,
    #reviews h2,
    #urgencies h2,
    #faq h2,
    #contact h2 {
        font-size: 1.75rem !important;
    }
    
    #services ul li h3 {
        font-size: 1.1rem;
    }
    
    #services ul li p {
        font-size: 0.9rem;
    }
    
    .review-card .review-text {
        font-size: 0.95rem;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    /* Floating buttons */
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn-icon {
        font-size: 1.2rem;
    }
    
    .floating-btn-icon img.whatsapp-icon {
        width: 90%;
        height: 90%;
    }
    
    .floating-btn:hover {
        width: 50px;
        padding: 0;
        border-radius: 50%;
    }
    
    .floating-btn:hover .floating-btn-text {
        display: none;
    }
    
    .floating-btn-whatsapp:hover {
        width: 50px;
        padding: 0;
        border-radius: 50%;
    }
}

/* Legal Pages Styles */
.container h1 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

.container section {
    margin: 40px 0;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container section h2 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F1C40F;
}

.container section h3 {
    font-size: 1.4rem;
    color: #2a5298;
    margin-top: 20px;
    margin-bottom: 12px;
}

.container section p {
    margin: 15px 0;
    line-height: 1.8;
    color: #555;
}

.container section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.container section ul li {
    margin: 10px 0;
    line-height: 1.8;
    color: #555;
}

.container section a {
    color: #2a5298;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.container section a:hover {
    color: #F1C40F;
}

.container > .section-content > p:first-of-type {
    text-align: center;
    color: #777;
    font-style: italic;
    margin-bottom: 30px;
}
