﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8f8f8;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 70px;
    height: 70px;
    display: block;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 0.85rem;
    color: #FFC107;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    padding: 5px 0;
}

.nav a:hover,
.nav a.active {
    color: #FFC107;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.phone-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #FFC107;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.phone-icon {
    margin-right: 3px;
}

.whatsapp-btn-header {
    width: 42px;
    height: 42px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn-header svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn-header:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* HERO */
.hero {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
    padding: 80px 0 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 40%, #2a2a2a 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 520px;
    padding-bottom: 80px;
}

.badge {
    display: inline-block;
    background: #FFC107;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 8px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-phone,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-phone:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.btn-phone {
    background: #fff;
    color: #1a1a1a;
}

.btn-phone .icon {
    font-size: 1.6rem;
}

.btn-phone small {
    display: block;
    font-size: 0.65rem;
    color: #FFC107;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.btn-phone strong {
    font-size: 1.1rem;
    line-height: 1.1;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp .icon svg {
    width: 28px;
    height: 28px;
}

.hero-image {
    position: relative;
    flex: 0 0 520px;
    height: 420px;
    display: flex;
    align-items: flex-end;
}

.hero-image img {
    max-width: 150%;
    max-height: 150%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* FEATURES */
.features {
    background: #1a1a1a;
    padding: 40px 0;
    border-top: 4px solid #FFC107;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.clock-icon { background: #FFC107; color: #1a1a1a; }
.pin-icon { background: #FFC107; color: #1a1a1a; }
.shield-icon { background: #FFC107; color: #1a1a1a; }
.dollar-icon { background: #FFC107; color: #1a1a1a; }

.feature-text h3 {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #bbb;
    line-height: 1.3;
}

/* COVERAGE */
.coverage {
    background: #fff;
    padding: 70px 0;
}

.coverage .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-info h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 10px;
}

.coverage-info h2 span {
    color: #FFC107;
}

.coverage-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    font-size: 0.95rem;
    color: #444;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.coverage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: 800;
}

/* MAP */
.coverage-map {
    display: flex;
    justify-content: center;
}

.map-circle {
    position: relative;
    width: 260px;
    height: 260px;
}

.map-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #ddd;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 90px; height: 90px; }
.ring-2 { width: 160px; height: 160px; }
.ring-3 { width: 240px; height: 240px; }

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-pin svg {
    width: 26px;
    height: 26px;
}

.map-label {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

.label-center { top: 60%; left: 50%; transform: translateX(-50%); color: #1a1a1a; font-weight: 900; }
.label-top { top: 8%; left: 50%; transform: translateX(-50%); }
.label-left { top: 45%; left: 0; }
.label-bottom { bottom: 8%; left: 50%; transform: translateX(-50%); }

/* COVERAGE CONTACT */
.coverage-contact {
    text-align: center;
}

.coverage-contact h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.coverage-contact h3 span {
    color: #FFC107;
}

.coverage-contact p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-phone-inline,
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 800;
    margin: 6px 0;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 280px;
}

.btn-phone-inline:hover,
.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-phone-inline {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 1.1rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: #fff;
    font-size: 1rem;
}

.btn-whatsapp-large svg {
    width: 24px;
    height: 24px;
}

/* SERVICES */
.services {
    background: #1a1a1a;
    padding: 70px 0;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #fff;
}

.section-title span {
    border-bottom: 4px solid #FFC107;
    padding-bottom: 6px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid #FFC107;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 50px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
}

/* CTA BAR */
.cta-bar {
    background: #FFC107;
    padding: 18px 0;
}

.cta-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.cta-phone .icon {
    font-size: 1.6rem;
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
}

.cta-whatsapp {
    width: 46px;
    height: 46px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.cta-whatsapp svg {
    width: 26px;
    height: 26px;
}

.cta-whatsapp:hover {
    transform: scale(1.08);
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 14px;
}

.footer h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: #FFC107;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-contact a,
.footer-social a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-contact a:hover,
.footer-social a:hover {
    color: #FFC107;
}

.footer-whatsapp {
    background: #25D366;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
}

.footer-contact p {
    font-size: 0.85rem;
    color: #bbb;
    margin-top: 12px;
}

.footer-area p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 6px;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { padding-bottom: 30px; }
    .hero-image { flex: 0 0 auto; height: 300px; }
    .hero-buttons { justify-content: center; }
    .features .container { grid-template-columns: repeat(2, 1fr); }
    .coverage .container { grid-template-columns: 1fr; text-align: center; }
    .coverage-list li { display: inline-block; margin: 4px 8px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .header .container { flex-wrap: wrap; gap: 10px; }
    .phone-label { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-phone, .btn-whatsapp { width: 100%; max-width: 300px; justify-content: center; }
    .features .container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-bar .container { flex-direction: column; gap: 10px; text-align: center; }
    .cta-phone strong { font-size: 0.9rem; }
    .footer .container { grid-template-columns: 1fr; text-align: center; }
    .map-circle { width: 220px; height: 220px; }
}
