/* 
  Academia Fiscal - Main Stylesheet
  Color Palette:
  - Main Background: #2F2F4F (deep indigo)
  - Accent Gradient: #18E0C5 (turquoise) to #E83E8C (fuchsia)
  - Text: #F9F9F9 (almost white)
  - Buttons: #18E0C5 with transition to #E83E8C on hover
  - Block Background: rgba(255, 255, 255, 0.05) (semi-transparent white with glass effect)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #2F2F4F;
    color: #F9F9F9;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #18E0C5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E83E8C;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #18E0C5, #E83E8C);
    color: #F9F9F9;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #E83E8C, #18E0C5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #F9F9F9;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #F9F9F9;
    border: 1px solid #18E0C5;
}

.btn-secondary:hover {
    background: rgba(24, 224, 197, 0.2);
    color: #F9F9F9;
    transform: translateY(-3px);
}

.btn-nav {
    background: #18E0C5;
    color: #2F2F4F;
    padding: 8px 20px;
}

.btn-nav:hover {
    background: #E83E8C;
    color: #F9F9F9;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(47, 47, 79, 0.9);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #F9F9F9;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 10px;
}

.menu-icon span:nth-child(3) {
    top: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: #F9F9F9;
    font-weight: 500;
    position: relative;
}

.nav-list a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #18E0C5, #E83E8C);
    transition: width 0.3s ease;
}

.nav-list a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(47, 47, 79, 0.95) 0%, rgba(47, 47, 79, 0.8) 100%), url('./img/urwDeJ.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 150px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #18E0C5, #E83E8C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    text-align: center;
}

.benefits h2 {
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
}

/* Courses Section */
.courses h2 {
    text-align: center;
    margin-bottom: 50px;
}

.courses-grid {
    display: flex;
    gap: 30px;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    color: #18E0C5;
}

.course-content ul {
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background: rgba(255, 255, 255, 0.02);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #18E0C5;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-position {
    color: #18E0C5;
    font-style: italic;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #18E0C5;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Order Form Section */
.order-form {
    background: rgba(255, 255, 255, 0.02);
}

.order-form h2 {
    text-align: center;
    margin-bottom: 40px;
}

.order-form form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #F9F9F9;
    font-family: 'Poppins', sans-serif;
}

.form-group select option {
    background-color: #2F2F4F;
    color: #F9F9F9;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #18E0C5;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Certifications Section */
.certifications h2 {
    text-align: center;
    margin-bottom: 30px;
}

.certifications-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.certification-item {
    text-align: center;
    padding: 20px;
}

.certification-item svg {
    margin-bottom: 15px;
}

/* Footer Styles */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
}

.footer-contact, .footer-links {
    flex: 1;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup h3 {
    margin-bottom: 10px;
}

.cookie-popup p {
    margin-bottom: 0;
    flex: 1;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding-top: 150px;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.thank-you svg {
    margin-bottom: 30px;
}

.thank-you h1 {
    color: #18E0C5;
}

.thank-you .btn-primary {
    margin-top: 30px;
}

/* Policy Pages */
.policy-page {
    padding-top: 150px;
    min-height: auto;
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.policy-page .btn-secondary {
    display: block;
    max-width: 300px;
    margin: 30px auto;
    text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content, .benefits-grid, .courses-grid, .testimonials-grid {
        flex-direction: column;
    }
    
    .certifications-grid {
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-icon {
        display: block;
    }
    
    .menu-toggle:checked ~ .nav-list {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: rgba(47, 47, 79, 0.95);
        padding: 20px;
        border-radius: 10px;
        width: 200px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .policy-page {
        padding-top: 120px;
    }
} 