/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #002952;
    --secondary-color: #15616d;
    --accent-color: #15616d;
    --accent-light: #2a7a87;
    --text-dark: #002952;
    --text-light: #4a5568;
    --background-light: #fdf4eb;
    --background-gradient: linear-gradient(135deg, #15616d 0%, #002952 100%);
    --white: #ffffff;
    --shadow: rgba(0, 41, 82, 0.08);
    --shadow-lg: rgba(0, 41, 82, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #002952 0%, #15616d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #15616d 0%, #002952 100%);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 50%, #fdf4eb 100%);
    padding: 60px 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 97, 109, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex-shrink: 0;
    width: 35%;
    max-width: 380px;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(21, 97, 109, 0.2) 0%, rgba(0, 41, 82, 0.2) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero-image:hover::before {
    opacity: 1;
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.hero-text {
    flex: 1;
    text-align: left;
}

.badge {
    display: inline-block;
    background: rgba(44, 95, 126, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.15;
    background: linear-gradient(135deg, #002952 0%, #15616d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--text-light);
    font-weight: 400;
}

.hero-disclaimer {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.8;
}

/* Notice Banner */
.notice-banner {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #b8d9e8;
    border-bottom: 1px solid #b8d9e8;
}

.notice-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse-banner {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 107, 0.5); }
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #15616d;
    text-align: center;
    position: relative;
    z-index: 1;
}

.notice-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.notice-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #002952;
}

.notice-text strong {
    font-weight: 800;
    color: #15616d;
}

.whatsapp-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.whatsapp-logo {
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #15616d 0%, #002952 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 97, 109, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(21, 97, 109, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #002952 0%, #15616d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Problems Section */
.problems-section {
    background: var(--background-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #15616d 0%, #002952 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(21, 97, 109, 0.15);
    border-color: rgba(21, 97, 109, 0.2);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.problem-card h3 {
    font-size: 1.4rem;
    color: #002952;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.process-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdf4eb 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21, 97, 109, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.process-card:hover::after {
    opacity: 1;
}

.process-card:hover {
    border-color: rgba(21, 97, 109, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(21, 97, 109, 0.15);
}

.process-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.process-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 97, 109, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 41, 82, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .section-title {
    color: var(--text-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 50%, #fdf4eb 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 97, 109, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 41, 82, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.team-section .section-title {
    background: linear-gradient(135deg, #002952 0%, #15616d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(21, 97, 109, 0.15);
    box-shadow: 0 10px 40px rgba(21, 97, 109, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(21, 97, 109, 0.25);
    box-shadow: 0 20px 60px rgba(21, 97, 109, 0.15);
}

.team-image {
    flex-shrink: 0;
    width: 280px;
    height: 360px;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 100%);
    box-shadow: 0 15px 50px rgba(21, 97, 109, 0.2);
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 97, 109, 0.1) 0%, rgba(0, 41, 82, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    flex: 1;
    padding: 20px 0;
}

.team-info h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #002952 0%, #15616d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.team-crp {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fdf4eb 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #15616d 0%, #002952 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 100%);
    transform: translateX(12px);
    box-shadow: 0 8px 30px rgba(21, 97, 109, 0.12);
    border-color: rgba(21, 97, 109, 0.2);
}

.benefit-bullet {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.benefit-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    color: rgba(21, 97, 109, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(21, 97, 109, 0.15);
    border-color: rgba(21, 97, 109, 0.2);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-address,
.footer-cnpj {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #15616d;
    transform: translateY(-5px);
}

/* Floating Social Buttons */
.floating-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

.floating-btn:hover::before {
    left: 100%;
}

.floating-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #1da851 100%);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584 0%, #833AB4 50%, #405DE6 100%);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    z-index: 1;
    position: relative;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Location Section */
.location-section {
    background: var(--white);
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    padding: 40px 0;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.location-address {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.location-icon {
    font-size: 1.8rem;
    color: #15616d;
    flex-shrink: 0;
}

.location-address p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #15616d 0%, #002952 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(21, 97, 109, 0.3);
    margin-top: 20px;
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 97, 109, 0.4);
}

.map-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 350px;
    }
}

/* Doctoralia Widget Section */
.doctoralia-widget-section {
    background: linear-gradient(135deg, #fdf4eb 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.doctoralia-widget-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(21, 97, 109, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.doctoralia-widget-section .section-title {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.doctoralia-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.widget-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-container a {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.widget-container a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .doctoralia-widget-section {
        padding: 50px 0;
    }

    .widget-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .doctoralia-widget-section .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .doctoralia-logo {
        height: 32px;
    }

    .widget-container {
        padding: 20px 12px;
        border-radius: 12px;
        margin: 0 10px;
    }

    .widget-container iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: left;
    }

    .hero-image {
        width: 100%;
        max-width: 280px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .notice-banner {
        padding: 15px 0;
    }

    .notice-content {
        flex-direction: column;
        gap: 10px;
    }

    .notice-icon {
        font-size: 1.5rem;
    }

    .notice-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .problems-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-image {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-logo {
        width: 19px;
        height: 19px;
        margin-right: 7px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        gap: 25px;
    }

    .hero-image {
        max-width: 220px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin: 15px 0;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .whatsapp-logo {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .floating-buttons {
        left: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Media query para dispositivos muito pequenos */
@media (max-width: 320px) {
    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .whatsapp-logo {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

    .hero-title {
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* WhatsApp Confirmation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-alert {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-question {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 20px 30px 30px;
}

.btn-cancel,
.btn-confirm {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-cancel:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.btn-confirm {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-confirm:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
