/* 
   domain.com - Estilo principal
   Esquema de cores:
   - Fundo: #0B132B (azul escuro)
   - Acentos: #F15BB5 (rosa vibrante), #00F5D4 (turquesa)
   - Gradientes: #F15BB5 -> #00F5D4
   - Texto: #FFFFFF, Títulos: #EDF2F4
*/

/* === Reset e estilos base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0B132B;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: #00F5D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F15BB5;
}

h1, h2, h3, h4, h5, h6 {
    color: #EDF2F4;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

/* === Botões === */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F15BB5 0%, #00F5D4 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(241, 91, 181, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 14px rgba(241, 91, 181, 0.5);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-outline {
    border: 2px solid #00F5D4;
    color: #00F5D4;
    background: transparent;
}

.btn-outline:hover {
    background: #00F5D4;
    color: #0B132B;
}

/* === Header e navegação === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background-color: rgba(11, 19, 43, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: #EDF2F4;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    margin-left: 0.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F15BB5 0%, #00F5D4 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.9)), url('./img/2hqr6y.jpg') no-repeat center center / cover;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === About Section === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
}

/* === Advantages Section === */
.advantages {
    background-color: rgba(0, 245, 212, 0.05);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background-color: rgba(11, 19, 43, 0.8);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(11, 19, 43, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-card h3,
.service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* === Testimonials Section === */
.testimonials {
    background-color: rgba(241, 91, 181, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(11, 19, 43, 0.8);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #00F5D4;
}

/* === FAQ Section === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(11, 19, 43, 0.8);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item input {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
}

.faq-item input:checked ~ .faq-question {
    border-radius: 10px 10px 0 0;
    background-color: rgba(241, 91, 181, 0.1);
}

.faq-item input:checked ~ .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
}

/* === Contact Form === */
.contact {
    background-color: rgba(0, 245, 212, 0.05);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(11, 19, 43, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00F5D4;
}

.service-options {
    margin-top: 1.5rem;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #00F5D4;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #0B132B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.terms {
    margin-top: 2rem;
}

/* === Footer === */
.site-footer {
    background: linear-gradient(to bottom, rgba(11, 19, 43, 0.95), rgba(19, 33, 73, 0.95));
    padding: 3rem 0 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info h3,
.footer-contact h3,
.footer-links h3 {
    color: #00F5D4;
    margin-bottom: 1.2rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact svg {
    margin-right: 0.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 19, 43, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-content p {
    margin-right: 1rem;
}

#cookie-accept {
    background-color: #00F5D4;
    color: #0B132B;
    min-width: 120px;
}

/* === Thank You Page === */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.85), rgba(19, 33, 73, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #F15BB5, #00F5D4);
}

.thank-you-icon {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 3px 6px rgba(0, 245, 212, 0.3));
}

.thank-you h1 {
    color: #00F5D4;
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thank-you .btn {
    margin-top: 1rem;
}

/* === Policy Pages === */
.policy {
    min-height: 80vh;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.policy h1 {
    margin-bottom: 2rem;
    color: #00F5D4;
}

.policy-content {
    background-color: rgba(11, 19, 43, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #F15BB5;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #00F5D4;
}

.policy-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #F15BB5;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(11, 19, 43, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .menu-toggle:checked ~ .menu-icon span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

@media (min-width: 2000px) {
    body {
        font-size: 18px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
} 