* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    color: #043c65;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #043c65;
}

p {
    margin-bottom: 15px;
}



.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #043c65, #043c65);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    line-height: 1.2;
}

.btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
 
/* TELEFONE */
.btn-telefone {
    background: linear-gradient(135deg, #296f9e, #2980b9);
}

.btn-telefone:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* EMAIL */
.btn-email {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.btn-email:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-instagram {
    background: linear-gradient(135deg, #e1306c, #833ab4);
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #833ab4, #e1306c);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(44, 62, 80, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 76px;
}

.logo {
    display: flex;
    gap: 15px;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(90, 106, 122, 0.5)), url('../imagens/fundo.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(34px, 7vw, 48px);
    margin-bottom: 20px;
    color: white;
}

.hero .subtitle {
    font-size: clamp(18px, 4vw, 24px);
    margin-bottom: 10px;
    font-weight: 300;
}

.hero .tagline {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.sobre {
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.sobre-text {
    flex: 1;
}

.sobre-image {
    flex: 1.25;
    max-width: 640px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.sobre-image img {
    width: 100%;
    height: clamp(420px, 32vw, 520px);
    object-fit: cover;
    display: block;
}

.destaque {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.servicos {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.servico-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #ecf0f1;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

.servico-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.servico-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contato {
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    border: 1px solid #ecf0f1;
}

.form-group {
    margin-bottom: 25px;
}

.form-feedback {
    display: none;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.form-feedback.success,
.form-feedback.error {
    display: block;
}

.form-feedback.success {
    background: #e8f7ee;
    color: #176b35;
}

.form-feedback.error {
    background: #fdecec;
    color: #9f1d1d;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contatos {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.contatos .section-title h2 {
    color: white;
}

.contatos .section-title h2::after {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 20px;
}

.contato-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 0;
}

.contato-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.contato-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.contato-card h3 {
    color: white;
    margin-bottom: 15px;
}

.contato-card p {
    max-width: 100%;
}

.contato-card .email-line {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0;
}

.avaliacoes {
    background-color: #f8fafc;
}

.avaliacoes-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}

.avaliacoes-head h3,
.avaliacao-copy h3 {
    color: #043c65;
    margin-bottom: 8px;
}

.avaliacoes-head p,
.avaliacao-copy p {
    color: #5d6d7e;
}

.btn-google {
    background: linear-gradient(135deg, #043c65, #296f9e);
    white-space: nowrap;
}

.reviews-status {
    color: #5d6d7e;
    margin-bottom: 16px;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 18px;
}

.review-card {
    background: white;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(4, 60, 101, 0.08);
}

.review-card p {
    color: #34495e;
    margin: 12px 0;
    line-height: 1.6;
}

.review-card strong,
.review-card small {
    display: block;
}

.review-card small {
    color: #7f8c8d;
    margin-top: 4px;
}

.review-card a {
    color: #043c65;
    font-weight: 700;
}

.review-stars {
    color: #bdc3c7;
    font-size: 18px;
    letter-spacing: 0;
}

.review-stars span {
    color: #f5b301;
}

.avaliacao-site {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
    margin-top: 34px;
    background: white;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    padding: 28px;
}

.review-form .btn {
    width: 100%;
}

.site-reviews {
    margin-top: 22px;
}

.avaliacao-copy .site-reviews {
    grid-template-columns: 1fr;
}

.site-reviews-title {
    color: #043c65;
    margin-top: 28px;
}

.reviews-empty {
    color: #5d6d7e;
    font-weight: 600;
}

footer {
    background-color: #1a252f;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-logo .logo-name {
    color: white;
    font-size: 18px;
}

.footer-logo .logo-title {
    color: #bdc3c7;
    font-size: 12px;
}

.copyright {
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 130px;
    }

    .navbar {
        flex-direction: column;
        padding: 8px 0 12px;
        min-height: auto;
    }

    .logo-img {
        height: 56px;
    }
    
    .nav-links {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 14px;
    }
    
    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 14px;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }

    .sobre-image {
        width: 100%;
        max-width: 680px;
    }

    .sobre-image img {
        height: clamp(320px, 62vw, 460px);
    }
    
    .hero {
        min-height: 92vh;
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .form-container {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .avaliacoes-head,
    .avaliacao-site {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
        padding: 0 8px;
    }

    .nav-links {
        gap: 8px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 12px 18px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card,
    .contato-card,
    .avaliacao-site,
    .review-card {
        padding: 24px 16px;
    }

    .contato-card .email-line {
        font-size: 12px;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 360px) {
    .nav-links a {
        font-size: 13px;
    }

    .contato-card .email-line {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}
