/* 
    CONTABILIDADE WEBSITE STYLES
    Cores principais:
    - Primário: #F7FF56 (Limão)
    - Secundário: #1E1E1E (Grafite)
    - Terciário: #E040FB (Fúcsia)
*/

/* RESET E VARIÁVEIS */
:root {
    --primary: #F7FF56;
    --secondary: #1E1E1E;
    --accent: #E040FB;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #333333;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #C831E3;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

/* BOTÕES */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background-color: #EAFF00;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: #C831E3;
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img, .logo svg {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--secondary);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--accent);
}

.mobile-nav-toggle {
    display: none;
}

/* HERO SECTION */
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)), url('../img/BQsX9M.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: center;
}

.hero-content .btn-primary {
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.hero-image {
    display: none;
}

/* ABOUT SECTION */
.about {
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-text li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* SERVICES SECTION */
.services {
    background: linear-gradient(135deg, #F8F9FA 0%, var(--gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-image {
    margin-bottom: 40px;
    text-align: center;
}

.services-image img {
    max-width: 600px;
    box-shadow: var(--shadow);
}

.service-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: disc;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
}

/* BENEFITS SECTION */
.benefits {
    background-color: var(--light);
}

.benefits-image {
    margin-bottom: 40px;
    text-align: center;
}

.benefits-image img {
    max-width: 600px;
    box-shadow: var(--shadow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--secondary);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(247, 255, 86, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    padding: 0 20px 20px;
}

.testimonial-content::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 60px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    margin-bottom: 0;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* CONTACT SECTION */
.contact {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: var(--accent);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

/* FOOTER */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #ccc;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-text {
    flex: 2;
}

.cookie-buttons {
    flex: 1;
    text-align: right;
}

.cookie-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--secondary);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* POLICY PAGES */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2::after {
    left: 0;
    transform: none;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul, 
.policy-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

/* THANK YOU PAGE */
.thanks-container {
    text-align: center;
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    color: var(--secondary);
}

/* RESPONSIVO */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .hero .container {
        min-height: 60vh;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero-content,
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    /* Menu de navegação mobile */
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--secondary);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0 0 20px 0;
    }
    
    .hero .container {
        min-height: auto;
        padding: 60px 0;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
} 