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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d63447;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color 0.25s;
}

.logo-text:hover {
    color: #c12a3a;
}

.header-phone {
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    color: #1a1a1a;
    padding: 10px 20px;
    border: 2px solid #d63447;
    border-radius: 4px;
    transition: all 0.25s;
}

.header-phone:hover {
    background-color: #d63447;
    color: #ffffff;
}

.hero {
    padding: 100px 24px 80px;
    background-color: #fafafa;
}

.hero-content {
    max-width: 680px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #d63447;
    color: #ffffff;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.25s;
}

.hero-cta:hover {
    background-color: #c12a3a;
    transform: translateY(-1px);
}

.hero-details {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.detail-item {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 600;
    color: #1a1a1a;
}

section {
    padding: 90px 24px;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 56px;
    max-width: 640px;
}

.services {
    background-color: #ffffff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-item {
    padding: 32px;
    background-color: #fafafa;
    border-radius: 2px;
    border-left: 3px solid #d63447;
    transition: all 0.3s;
}

.service-item:hover {
    background-color: #f5f5f5;
    border-left-width: 5px;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item p {
    color: #555;
    line-height: 1.7;
}

.advantages {
    background-color: #fafafa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-card {
    text-align: left;
}

.advantage-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #d63447;
    margin-bottom: 16px;
    line-height: 1;
}

.advantage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.advantage-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq {
    background-color: #ffffff;
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    margin-bottom: 32px;
    padding: 28px;
    background-color: #fafafa;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
}

.faq-item:hover {
    background-color: #f5f5f5;
}

.faq-q {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    color: #d63447;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.25s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    color: #555;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

.contact {
    background-color: #1a1a1a;
    color: #ffffff;
}

.contact h2 {
    color: #ffffff;
}

.contact .section-intro {
    color: #b0b0b0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
}

.contact-method {
    margin-bottom: 32px;
}

.contact-method h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: color 0.25s;
}

.contact-value:hover {
    color: #d63447;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
}

.coverage-note {
    margin-top: 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border-left: 3px solid #d63447;
}

.coverage-note p {
    color: #b0b0b0;
    line-height: 1.7;
}

footer {
    background-color: #0a0a0a;
    color: #888;
    padding: 60px 24px 24px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    max-width: 1140px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-contact a {
    color: #d63447;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-contact a:hover {
    color: #c12a3a;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #222;
    color: #666;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 70px 24px 60px;
    }
    
    section {
        padding: 70px 24px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-phone {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .hero {
        padding: 50px 20px 40px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .hero-text {
        font-size: 1.05rem;
    }
    
    .service-item {
        padding: 24px;
    }
    
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

/* Content Pages Styles */
.page-hero {
    padding: 80px 24px 60px;
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.page-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.content-section {
    padding: 70px 24px;
    background-color: #ffffff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    max-width: 1140px;
}

.main-content {
    max-width: 720px;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
    text-align: left;
}

.main-content h3 {
    font-size: 1.4rem;
    margin: 40px 0 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.main-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

.content-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d63447;
    font-weight: 700;
    font-size: 1.2rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background-color: #fafafa;
    padding: 28px;
    border-radius: 2px;
    border-left: 3px solid #d63447;
}

.sidebar-box h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.sidebar-cta {
    display: block;
    background-color: #d63447;
    color: #ffffff;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 4px;
    transition: all 0.25s;
    text-align: center;
    margin-bottom: 12px;
}

.sidebar-cta:hover {
    background-color: #c12a3a;
    transform: translateY(-1px);
}

.sidebar-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.25s;
}

.sidebar-list a:hover {
    color: #d63447;
}

.cta-section {
    padding: 70px 24px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-section p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

@media (max-width: 968px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 50px 20px 40px;
    }
    
    .page-hero h1 {
        font-size: 1.85rem;
    }
    
    .content-section {
        padding: 50px 20px;
    }
    
    .main-content h2 {
        font-size: 1.65rem;
    }
    
    .main-content h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-box {
        padding: 20px;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
}
