/* ===================================
   PÁGINAS DE SERVIÇOS - OWLIN
   Stylesheet compartilhado
   =================================== */

:root {
    --primary-blue: #1a5490;
    --secondary-blue: #2196F3;
    --accent-gold: #FFD700;
    --whatsapp-green: #25D366;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* ===================================
   HERO SECTION
   =================================== */

.service-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-content .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    color: var(--white);
}

/* ===================================
   SERVICE CONTENT
   =================================== */

.service-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.3;
}

.service-description p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.service-description p:last-of-type {
    margin-bottom: 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.service-benefits {
    margin: 60px 0;
    padding: 40px;
    background: var(--background-light);
    border-radius: 12px;
}

.service-benefits h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.service-features {
    margin: 60px 0;
}

.service-features h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: clamp(40px, 6vw, 48px);
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-item p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.service-cta {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    color: var(--text-dark);
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: clamp(20px, 3vw, 24px);
    animation: pulse 2s infinite;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .service-description h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .service-content {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .service-description p {
        text-align: left;
    }

    .service-benefits {
        padding: 30px 20px;
        margin: 40px 0;
        border-radius: 8px;
    }

    .benefits-list li {
        padding: 10px 0;
    }

    .service-features {
        margin: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .service-cta {
        padding: 60px 20px;
    }

    .cta-content {
        padding: 0 15px;
    }

    .btn-whatsapp {
        padding: 16px 32px;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: 300px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .service-benefits {
        padding: 25px 15px;
        margin: 30px 0;
    }

    .benefits-list li {
        padding: 8px 0;
        gap: 10px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .service-cta {
        padding: 50px 15px;
    }

    .btn-whatsapp {
        padding: 14px 28px;
        max-width: 280px;
        gap: 10px;
    }
}

/* ======
=============================
   CONTACT FORM SECTION
   =================================== */

.service-contact {
    padding: 80px 0;
    background: var(--background-light);
}

.service-contact .container {
    max-width: 800px;
}

.service-contact .contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.service-contact .contact-form-box h3 {
    font-size: clamp(24px, 4vw, 28px);
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-contact .contact-form-box>p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: clamp(15px, 2vw, 16px);
}

.cta-whatsapp {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.cta-whatsapp p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .service-contact {
        padding: 50px 0;
    }

    .service-contact .container {
        padding: 0 15px;
    }

    .service-contact .contact-form-box {
        padding: 25px 20px;
        border-radius: 12px;
        margin-bottom: 25px;
    }

    .service-contact .contact-form-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service-contact .contact-form-box>p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-whatsapp {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .cta-whatsapp p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-contact {
        padding: 40px 0;
    }

    .service-contact .container {
        padding: 0 12px;
    }

    .service-contact .contact-form-box {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .service-contact .contact-form-box h3 {
        font-size: 20px;
    }

    .service-contact .contact-form-box>p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-whatsapp {
        padding: 20px 15px;
    }

    .cta-whatsapp p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .btn-whatsapp {
        padding: 13px 24px;
        font-size: 15px;
    }
}