/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #059669;
    --accent-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-large: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav__logo:hover {
    opacity: 0.8;
}

.medical-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__credentials {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav__crm, .nav__rqe {
    display: none;
}

.nav__crm {
    font-weight: 600;
    color: var(--primary-color);
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.nav__toggle {
    display: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-large);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 800px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 50% 20% 50% 20%;
    transform: rotate(-15deg);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 60% 40% 30% 70%;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
}

/* Medical floating icons */
.hero__decorative {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(37, 99, 235, 0.3);
    font-size: 1.5rem;
}

.hero__decorative--1 {
    top: 15%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero__decorative--1::before {
    content: '\f06e'; /* eye icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.hero__decorative--2 {
    top: 60%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__decorative--2::before {
    content: '\f453'; /* glasses icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.hero__decorative--3 {
    top: 25%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: float 14s ease-in-out infinite;
}

.hero__decorative--3::before {
    content: '\f1b9'; /* car icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.hero__decorative--4 {
    bottom: 20%;
    left: 20%;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border-radius: 50%;
    animation: float 11s ease-in-out infinite;
}

.hero__decorative--4::before {
    content: '\f21e'; /* heartbeat icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Medical icons floating */
.hero__icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero__icon--1 {
    top: 20%;
    left: 15%;
    font-size: 2rem;
    animation-delay: -1s;
}

.hero__icon--2 {
    bottom: 30%;
    right: 20%;
    font-size: 1.5rem;
    animation-delay: -3s;
}

.hero__icon--3 {
    top: 70%;
    left: 8%;
    font-size: 1.8rem;
    animation-delay: -2s;
}

.hero__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    animation: fadeInLeft 1s ease-out;
}

.hero__badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__credentials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: transparent;
    border-radius: var(--border-radius);
}

.credential-line {
    text-align: center;
    white-space: nowrap;
}

.credential__label {
    display: inline;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.credential__value {
    font-weight: 600;
    color: var(--primary-color);
}

.hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease-out;
    z-index: 2;
}



.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
}

.about__container {
    grid-template-columns: 1fr 1.2fr;
    align-items: flex-start;
    gap: 4rem;
}

.about__image {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about__content {
    animation: fadeInRight 1s ease-out;
}

.about__main-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about__main-title .highlight {
    color: var(--primary-color);
}

.about__intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.about__section {
    margin-bottom: 2.5rem;
}

.about__section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.about__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about__credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credential-item {
    background: var(--light-bg);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.credential-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.credential-item__icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-item__content {
    flex: 1;
}

.credential-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.credential-item__description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Services Section */
.services {
    background: var(--white);
    position: relative;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service__card {
    background: var(--white);
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.service__card:hover .service__icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.service__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.service__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service__list {
    list-style: none;
    text-align: left;
}

.service__list li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features__container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature__card {
    background: var(--white);
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    overflow: hidden;
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature__card:hover::before {
    transform: scaleX(1);
}

.feature__card:hover::after {
    opacity: 1;
}

.feature__card:hover .feature__icon {
    transform: translateY(-5px);
    animation: float-icon 2s ease-in-out infinite;
}

.feature__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature__icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature__card:hover .feature__icon::before {
    opacity: 1;
}

.feature__card:hover .feature__icon {
    background: var(--white);
    color: #ffffff;
    border-color: transparent;
}

.feature__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.feature__card:hover .feature__title {
    color: var(--primary-color);
}

.feature__description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature__card:hover .feature__description {
    color: var(--text-color);
}

/* Float animation for icons */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stagger animation for cards */
.feature__card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature__card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature__card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature__card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature__card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature__card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
}

.testimonials__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    position: relative;
}

.testimonial__card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial__stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial__text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial__info strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial__info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq__question i {
    transition: var(--transition);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact__info {
    animation: fadeInLeft 1s ease-out;
}

.contact__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact__item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact__item p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.contact__social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    animation: fadeInRight 1s ease-out;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
font-family: inherit;
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__map {
    margin-top: 3rem;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white);
}

.footer__info {
    list-style: none;
}

.footer__info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer__info i {
    width: 16px;
    color: var(--secondary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer__bottom {
    text-align: center;
    padding: 16px;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    /* Cor clara com opacidade */
    font-size: 0.75rem;
    /* Fonte menor */
    margin: 4px 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.5);
    /* Inicialmente igual ao texto */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-credit a:hover {
    color: #ffffff;
    /* Branco ao hover */
    text-decoration: underline;
}


/* Responsive Design */
@media screen and (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .nav__logo {
        font-size: 1rem;
    }

    .hero__container,
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Mobile hero reorganization */
    .hero__container {
        display: flex;
        flex-direction: column;
    }

    .hero__container .hero__content {
        display: contents;
    }

    .hero__title {
        order: 1;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero__image {
        order: 2;
        margin: 1.5rem 0;
    }

    .hero__description {
        order: 3;
        margin-bottom: 2rem;
    }

    .hero__credentials {
        order: 4;
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero__buttons {
        order: 5;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        justify-content: center;
    }

    /* Hide some decorative elements on mobile for cleaner look */
    .hero__decorative--3,
    .hero__decorative--4,
    .hero__icon--2,
    .hero__icon--3 {
        display: none;
    }

    .hero__decorative--1 {
        top: 10%;
        right: 10%;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero__decorative--2 {
        top: 70%;
        right: 15%;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-large);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav__menu.show {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav__contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .nav__credentials {
        gap: 0.15rem;
    }

    .nav__crm {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }

    .nav__toggle {
        display: block;
    }

    .features__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature__card {
        padding: 2rem 1.5rem;
    }

    .feature__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature__title {
        font-size: 1.2rem;
    }

    .feature__description {
        font-size: 0.9rem;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero__title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero__description {
        font-size: 1rem;
        text-align: center;
    }

    .hero__credentials {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }

    .credential-line {
        font-size: 0.875rem;
    }

    .hero__buttons {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .nav__logo {
        font-size: 0.9rem;
    }

    .nav__logo span {
        display: block;
    }

    .nav__phone {
        font-size: 0.875rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service__card,
    .contact__form {
        padding: 1.5rem;
    }

    .service__card {
        padding: 2rem 1rem;
    }

    .service__title {
        font-size: 1.25rem;
    }

    .service__description {
        font-size: 0.9rem;
    }

    .feature__card {
        padding: 1.75rem 1rem;
    }

    .feature__title {
        font-size: 1.1rem;
    }

    .feature__description {
        font-size: 0.85rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer__content {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {

    .whatsapp-float,
    .nav__toggle,
    .btn {
        display: none !important;
    }

    .section {
        padding: 1rem 0;
    }

    .hero {
        padding: 2rem 0;
    }
}