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

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Lato', sans-serif;
    margin-bottom: 20px;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 60px 0;
}

.cta-button {
    display: inline-block;
    background-color: #ff5722; /* Cor principal - laranja/vermelho alinhado com o logo */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #e64a19; /* Cor mais escura para hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

#logo {
    height: 70px; /* Aumentado de 50px para 70px para melhor visibilidade */
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff5722; /* Cor principal - laranja/vermelho */
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero_image.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
}

#hero h1 {
    color: white;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-cta {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.parceria {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 30px;
}

/* Introdução */
#introducao {
    background-color: white;
    text-align: center;
}

#introducao p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.beneficios-icones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.beneficios-icones div {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.beneficios-icones div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.beneficios-icones img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.beneficios-icones span {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.beneficios-icones p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Vantagens */
#vantagens {
    background-color: #f5f5f5;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vantagem-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vantagem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vantagem-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.vantagem-item h3 {
    font-size: 1.3rem;
}

/* Coberturas */
#coberturas {
    background-color: white;
}

.coberturas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cobertura-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cobertura-card h3 {
    color: #ff5722; /* Cor principal - laranja/vermelho */
    margin-bottom: 20px;
}

.cobertura-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.cobertura-card ul li {
    margin-bottom: 10px;
}

.obs {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
}

/* Como Contratar */
#como-contratar {
    background-color: #f5f5f5;
    text-align: center;
}

.passos-contratacao {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.passo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.passo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.passo img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

/* Público-Alvo */
#publico-alvo {
    background-color: white;
}

#publico-alvo ul {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
}

#publico-alvo ul li {
    margin-bottom: 15px;
}

/* Depoimentos */
#depoimentos {
    background-color: #f5f5f5;
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.depoimento:before {
    content: '"';
    font-size: 5rem;
    color: #ff5722; /* Cor principal - laranja/vermelho */
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento span {
    display: block;
    text-align: right;
}

/* FAQ */
#duvidas {
    background-color: white;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #ff5722; /* Cor principal - laranja/vermelho */
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item h4:after {
    content: '+';
    float: right;
    font-weight: bold;
}

.faq-item.active h4:after {
    content: '-';
}

/* Contato */
#contato {
    background-color: #f5f5f5;
    text-align: center;
}

.contato-opcoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.contato-opcao {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contato-opcao:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contato-opcao img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.contato-opcao h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contato-opcao a {
    color: #ff5722; /* Cor principal - laranja/vermelho */
    text-decoration: none;
    font-weight: bold;
}

.contato-opcao a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer img {
    height: 70px; /* Aumentado para corresponder ao header */
    margin-bottom: 20px;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff5722; /* Cor principal - laranja/vermelho */
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsividade */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .beneficios-icones div {
        min-width: 180px;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    #hero {
        padding: 120px 0 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .beneficios-icones {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficios-icones div {
        max-width: 100%;
    }
    
    .vantagens-grid, .coberturas-grid, .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .passos-contratacao {
        flex-direction: column;
        align-items: center;
    }
    
    .passo {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Ocultar o botão CTA no cabeçalho apenas em celular */
    .header-cta {
        display: none;
    }
}
