/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #1a5f7a;
    --primary-dark: #124a60;
    --primary-light: #3a7d98;
    
    /* Secondary Colors */
    --secondary-color: #ff6b35;
    --secondary-dark: #e35525;
    --secondary-light: #ff8c60;
    
    /* Accent Colors */
    --accent-color: #2ec4b6;
    --accent-dark: #1eafa1;
    --accent-light: #4fdccf;
    
    /* Neutral Colors */
    --dark-color: #263238;
    --gray-color: #607d8b;
    --light-gray: #eceff1;
    --light-color: #f5f7f8;
    --white-color: #ffffff;
    
    /* Font Settings */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Box Shadow */
    --box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    font-size: 16px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white-color);
}

.btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-gray);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(26, 95, 122, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.header.fixed {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow-md);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 180px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin: 0 15px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.cta-header {
    margin-left: 30px;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white-color);
    z-index: 200;
    padding: 60px 30px 30px;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 18px;
    transition: color var(--transition-normal);
    display: block;
    padding: 5px 0;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-nav-cta {
    margin-top: 30px;
}

.mobile-nav-cta .btn {
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('https://i.ibb.co/PsjzQdRg/fundo.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white-color);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 95, 122, 0.9), rgba(26, 95, 122, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,176C960,181,1056,171,1152,144C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

/* Features */
.features {
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--box-shadow-md);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-md);
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    margin-top: 5px;
}

.about-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
}

.about-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about-cta {
    margin-top: 30px;
}

/* Counter Section */
.counter {
    padding: 100px 0;
    background-image: url('https://i.ibb.co/XQBcFhr/Counter-Section.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: var(--white-color);
}

.counter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 95, 122, 0.9);
}

.counter-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    padding: 0 15px;
}

.counter-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.counter-text {
    font-size: 18px;
    font-weight: 500;
}

/* Services Section */
.services-tabs {
    margin-top: 50px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-normal);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-bottom: 3px solid var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background-image: url('https://i.ibb.co/v63Cn1M4/Call-to-Action.png');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--white-color);
}

.cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 196, 182, 0.9);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.pricing-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}

.toggle-label {
    font-size: 18px;
    font-weight: 500;
    margin: 0 15px;
    color: var(--gray-color);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--primary-color);
}

.discount {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 2px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    margin-left: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-gray);
    transition: var(--transition-normal);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white-color);
    transition: var(--transition-normal);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 30px;
    right: -35px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--light-color);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.price.annual {
    display: none;
}

.period {
    font-size: 16px;
    color: var(--gray-color);
}

.pricing-description {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features .fa-check {
    color: var(--accent-color);
}

.pricing-features .fa-times {
    color: var(--gray-color);
}

.pricing-footer {
    padding: 0 30px 30px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 340px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--box-shadow-md);
}

.testimonial-text {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.testimonial-text i {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    font-size: 28px;
    opacity: 0.5;
}

.testimonial-text p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--light-gray);
}

.author-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.author-company {
    color: var(--gray-color);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-normal);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.5);
}

/* FAQ Section */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    flex-grow: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--white-color);
}

.faq-item.active .faq-question i {
    color: var(--white-color);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 500px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-sm);
    display: flex;
    align-items: flex-start;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    box-shadow: var(--box-shadow-md);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.contact-social {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 10px;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--box-shadow-md);
}

.form-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--dark-color);
    transition: all var(--transition-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

.form-check label {
    color: var(--gray-color);
}

.form-check a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Map Section */
.map {
    height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Newsletter */
.newsletter {
    background-color: var(--light-color);
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-text p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.newsletter-form {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--dark-color);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    margin-right: 10px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: all var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow-md);
    z-index: 90;
    transition: all var(--transition-normal);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--box-shadow-md);
    z-index: 90;
    transition: all var(--transition-normal);
}

.whatsapp-button:hover {
    background-color: #128c7e;
    color: var(--white-color);
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }
    
    .features-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-content,
    .pricing-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .cta-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .features-grid,
    .counter-grid,
    .services-grid,
    .faq-container,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .testimonial-container {
        height: 400px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .tab-btn::after {
        display: none;
    }
    
    .tab-btn.active {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .testimonial-container {
        height: 450px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
}

/* Price Toggle */
.annual-active .price.monthly {
    display: none;
}

.annual-active .price.annual {
    display: inline-block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}