:root {
    --cor-fonte-link-1: #78af99;
    --cor-fonte:#12ac9f; 
    --cor-fundo: #084948;
    --cor-buttons: #1b8f91;
    --cor-fonte-link-2: #be8b2d85; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

html {
    font-size: 16px;
}

body {
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.678);
    position: fixed;
    height: 60px; /* Defina uma altura fixa para o header */
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
    background: #0e7274;
    font-family:'Nunito', sans-serif;
}

header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    padding: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 10px 0;
    margin-left: auto;
    font-size: 20px;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--cor-fonte-link-1);
}

/* Seção Hero */
.hero {
    padding-top: 80px; /* Aumentei um pouco para telas maiores */
    padding-bottom: 30px;
    min-height: auto;
    background-color: var(--cor-fundo);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 90px;
}

.hero-text {
    flex: 1.5;
    max-width: 90%;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.degrade-dourado {
    background: linear-gradient(90deg, #8b7701 0%, #e6c14b 50%, #dbd8c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #d4b95f;
    margin-bottom: 1rem;
    padding-top: 20px;
    font-weight: bolder;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Seção apresentação */
.presents {
    padding: 50px 0;
    background-color: var(--cor-fonte);
    position: relative;
    overflow: hidden;
}

.presents-text {
    flex: 2;
    padding: 30px;
    position: relative;
}

.presentation-title {
    color: var(--cor-fundo);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.presentation-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--cor-buttons);
    margin: 15px 0 25px;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.regular-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--cor-fundo);
    margin-bottom: 10px;
}

.present-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.present-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.present-image:hover img {
    transform: translateY(-5px);
}

.img-maior {
    max-width: 800px !important;
    max-height: 700px !important;
    width: auto;
    height: auto;
}

.presents::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(184, 132, 35, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.image-right .hero-content {
    flex-direction: row-reverse;
}

/* Beneficios */
.beneficios {
    padding: 80px 0;
    text-align: center;
    background-color: var(--cor-fonte);
}

.section-title {
    color: var(--cor-fundo);
    margin-bottom: 40px;
    font-size: 2rem;
}

.beneficios-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.beneficio-method {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s;
}

.beneficio-method:hover {
    transform: translateY(-5px);
}

.beneficio-method i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--cor-buttons);
}

.beneficio-method p {
    color: #000000;
    font-weight: 500;
}

/* Serviços */
.services {
    padding: 30px 20px;
    background-color: var(--cor-fundo);
    text-align: center;
}

.services-container {
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(260px, 300px));
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
    max-width: calc(5 * 300px + 4 * 20px);
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--cor-buttons);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(27, 143, 145, 0.1);
    border-radius: 50%;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover i {
    transform: scale(1.1);
    color: var(--cor-fonte);
}

.service-card[data-service="basico"] i {
    color: #3ddd42;
}

.service-card[data-service="intermediario"] i {
    color: #2196F3;
}

.service-card[data-service="premium"] i {
    color: #FFC107;
}

.service-card[data-service="super-premium"] i {
    color: #F44336;
}

.service-card[data-service="silvestres"] i {
    color: #9C27B0;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.6rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.8rem;
    line-height: 1.4;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 15px 0;
    color: var(--cor-buttons);
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.btn {
    display: inline-block;
    background-color: var(--cor-buttons);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn:hover {
    background-color: #76a2a4;
    transform: translateY(-2px);
}

.btn-more {
    background-color: var(--cor-fonte-link-1);
}

/* Seção Cobertura */
.coverage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coverage-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

#coverage-basico { border-top: 5px solid #3ddd42; }
#coverage-intermediario { border-top: 5px solid #2196F3; }
#coverage-premium { border-top: 5px solid #FFC107; }
#coverage-silvestres { border-top: 5px solid #9C27B0; }
#coverage-super-premium { border-top: 5px solid #F44336; }

.coverage-card h3 {
    color: var(--cor-fundo);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-align: center;
}

.coverage-card h4 {
    color: var(--cor-buttons);
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
}

.coverage-card + .coverage-card {
    margin-top: 40px;
}

.coverage-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.coverage-section {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.section-header i {
    font-size: 1.2rem;
    color: var(--cor-buttons);
}

.section-header h5 {
    font-size: 1rem;
    color: var(--cor-fundo);
    margin: 0;
}

.section-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    padding: 0 10px;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    position: relative;
}

.benefit-item::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23b88423"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.benefit-name {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.discount-table {
    width: 100%;
    max-width: 900px;
    margin: 10px auto;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.discount-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 15px;
}

.example-grid {
    flex-wrap: wrap;
}

.discount-table th, .discount-table td {
    padding: 8px 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.discount-table th {
    background-color: var(--cor-buttons);
    color: white;
}

.discount-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.discount-table tr:hover {
    background-color: #f1f1f1;
}

.table-title {
    text-align: center;
    margin: 15px 0px;
    color: var(--cor-fundo);
    font-weight: bold;
}

/* Estilos para os modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    touch-action: manipulation;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.compare-btn {
    margin-left: 10px;
    background-color: var(--cor-fundo);
    color: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9em;
}

.comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.comparison-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.modal-content h3 {
    color: #333;
    margin-bottom: 20px;
}

.modal-content h4 {
    margin-top: 25px;
    color: #444;
}

.modal-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.modal-content li {
    margin-bottom: 8px;
}

/* Localização */
.location {
    padding: 80px 0;
    text-align: center;
    background-color: var(--cor-fundo);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(90%);
}

.location-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.location-info p {
    margin-bottom: 10px;
    color: var(--cor-fonte);
}

.location-info i {
    color: var(--cor-fonte-link-1);
    margin-right: 10px;
}

/* Formulário de Contato */
.contact-form-container {
    padding: 50px 0;
    background-color: var(--cor-fonte);
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 10px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--cor-fundo);
}

.required-field::after {
    content: " *";
    color: #f44336;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cor-buttons);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 143, 145, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    background-color: var(--cor-buttons);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #0e7274;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.back-button .btn {
    width: 100%;
    max-width: 300px;
}

.contact-columns {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.contact-form-wrapper {
    flex: 1.5;
    max-width: 800px;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group:nth-last-child(-n+3) {
    grid-column: span 2;
}

.doubts-section {
    flex: 1;
    max-width: 400px;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-self: center;
    margin-top: 0;
}

.doubts-section h1 {
    color: var(--cor-fundo);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.doubts-section h2 {
    color: var(--cor-buttons);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: normal;
}

.doubts-image {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    color: var(--cor-buttons);
}

.placeholder-image i {
    margin: 0 10px;
    opacity: 0.8;
}

.doubts-form .form-group {
    margin-bottom: 15px;
}

.doubts-form input,
.doubts-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.doubts-form textarea {
    min-height: 200px;
}

.btn.doubts-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.0rem;
}

/* Seção Como Funciona o Desconto */
.discount-info {
    padding: 60px 0;
    background-color: var(--cor-fonte);
    text-align: center;
}

.discount-steps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.step {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-3px);
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--cor-buttons);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-content h3 {
    color: var(--cor-fundo);
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-content p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

.discount-example {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 850px;
    margin: 30px auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.discount-example h3 {
    color: var(--cor-fundo);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.example-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin: 20px 0;
}

.example-item {
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 12px 15px;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.example-label {
    display: block;
    font-weight: bold;
    color: var(--cor-fundo);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.example-value {
    display: block;
    color: var(--cor-buttons);
    font-weight: bold;
    font-size: 0.9rem;
}

.example-save {
    display: block;
    font-size: 0.7rem;
    color: #4CAF50;
    margin-top: 3px;
}

.note {
    font-size: 0.75rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

.faq-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    flex: 1;
    min-width: 60%;
}

.faq-decorative-image {
    flex: 1;
    min-width: 40%;
    position: sticky;
    margin-top: 90px;
    top: 20px;
    align-self: flex-start;
    overflow: hidden;
}

.faq-decorative-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--cor-fundo);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: var(--cor-buttons);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-answer p {
    padding: 20px 0;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* CTA Section */
.faq-cta {
    text-align: center;
    margin-top: 50px;
    clear: both;
}

.faq-cta p {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Rodapé */
footer {
    background-color: #0e7274;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p, .footer-column a {
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    padding: 8px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    color: #ffffff;
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #0e7274;
        padding: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 12px 0;
       
    }

     .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .presents .hero-content,
    .image-right .hero-content {
        flex-direction: column;
    }
    
    .contact-columns {
        flex-direction: column;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-group:nth-last-child(-n+3) {
        grid-column: span 1;
    }
    
    .doubts-section {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discount-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding-top: 70px; /* Ajuste para mobile */
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-top: 10px;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        padding-top: 10px;
    }
    
    .presentation-title {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .beneficios-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-content-wrapper {
        flex-direction: column;
    }
    
    .faq-decorative-image {
        display: none;
    }

    .step {
        min-width: 160px;
    }
        
    .example-item {
        min-width: calc(50% - 10px);
    }

    .back-button {
        flex-direction: row;
        justify-content: center;
    }
    
    .back-button .btn {
        width: auto;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }
  
    .comparison-table {
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-methods {
        grid-template-columns: 1fr;
    }
    
    .beneficio-method {
        width: 100%;
        max-width: none;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero, .presents, .services, .location, .contact-form-container, .faq-section {
        padding: 40px 0;
    }

    .discount-steps {
        grid-template-columns: 1fr;
    }
    
    .example-item {
        min-width: 100%;
    }

    .comparison-table {
        display: block;
        width: 100%;
    }
  
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td {
        display: block;
    }
  
    .comparison-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
  
    .comparison-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }
  
    .comparison-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
  
    .comparison-table td:before {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: bold;
        color: var(--cor-fundo);
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 65px; /* Ajuste fino para telas muito pequenas */
    }
    
    header {
        height: 55px; /* Reduz um pouco o header em telas muito pequenas */
    }
    
    .nav-links {
        top: 55px; /* Ajuste para acompanhar a altura do header */
    }
}

@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .nav-links {
        font-size: 18px;
    }
    
    .menu-toggle {
        font-size: 20px;
    }
    
    .presentation-title {
        font-size: 1.6rem;
    }
    
    .lead-text, .regular-text {
        font-size: 1rem;
    }
}

/* Otimização para dispositivos touch */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }
    
    .beneficio-method:hover {
        transform: none;
    }
    
    .step:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .present-image:hover img {
        transform: none;
    }
}
