/* Importação de Fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

/* Map Container Styles */
.map-container {
    margin: 20px 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.6);
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
}

/* Contact Info Improvements */
.footer-section .contact-info {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-section .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-section .contact-item:hover::before {
    transform: scaleX(1);
}

.footer-section .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.footer-section .contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.footer-section .contact-details h4 {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.footer-section .contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

/* Directions Button */
.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.directions-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.status-badge.open {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.open::before {
    content: '●';
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Contact Action Buttons */
.contact-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.contact-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-action-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map-wrapper {
        height: 180px;
    }
    
    .footer-section .contact-item {
        padding: 16px;
        gap: 12px;
    }
    
    .footer-section .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 160px;
    }
    
    .footer-section .contact-info {
        gap: 16px;
    }
    
    .footer-section .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .footer-section .contact-icon {
        align-self: center;
    }
}

:root {
    --primary-color: #00BFFF;
    --primary-dark: #0099CC;
    --primary-blue: #00BFFF;
    --dark-blue: #0099CC;
    --secondary-color: #f8f9fa;
    --accent-color: #333333;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --white: #ffffff;
    --light-cyan: #E6F9FF;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    --gradient-secondary: linear-gradient(135deg, #333333 0%, #555555 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 191, 255, 0.2);
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    font-weight: 400;
}

section {
    margin: 0;
    border: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 191, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-brand .logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

/* WhatsApp Header Icon */
.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 191, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.hamburger:hover {
    background: rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.2);
}

.hamburger:hover::before {
    left: 100%;
}

.hamburger:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 191, 255, 0.3);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hamburger span:nth-child(1) {
    transform-origin: left center;
}

.hamburger span:nth-child(2) {
    transform-origin: center;
}

.hamburger span:nth-child(3) {
    transform-origin: left center;
}

.hamburger.active {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.hamburger.active span {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f9ff 25%, #f0f9ff 75%, #f8fafc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,191,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 3rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    color: var(--text-dark);
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dra-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 180px;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 50%, #007acc 100%);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.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.05);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.4);
    background: linear-gradient(135deg, #1ac6ff 0%, #00a6d6 50%, #0080b3 100%);
}

/* CTA Button Specific Styles */
.cta .btn-primary {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: var(--primary-color);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta .btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    color: #0d47a1;
}

.cta .btn-primary .btn-icon {
    margin-right: 10px;
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 191, 255, 0.25);
    border-color: var(--primary-color);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0 120px 0;
    margin-top: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300bfff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.6;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 191, 255, 0.05), transparent);
    transform: rotate(15deg);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-header {
    animation: fadeInUp 0.6s ease-out 0.2s both;
    margin-bottom: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #007acc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #007acc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    position: relative;
    height: 400px;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 122, 204, 0.1));
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(0, 191, 255, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.25);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 191, 255, 0.3));
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #007acc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.3);
}

.feature-card .feature-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #007acc);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.4);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Treatments Section */
.treatments {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.treatments .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.treatments .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.treatments .section-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.treatments .container {
    position: relative;
    z-index: 1;
}

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

.treatment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF, #0099CC);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
}

.treatment-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFFF, #0099CC);
    border-radius: 50%;
    margin-bottom: 25px;
}

.treatment-icon {
    font-size: 2.5rem;
    color: white;
}

.treatment-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.treatment-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #20b358);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::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;
}

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

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20b358, #25d366);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    text-decoration: none;
    color: white;
}

.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Treatment Stats */
.treatment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin: 80px 0;
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 191, 255, 0.1),
        0 8px 25px rgba(0, 153, 204, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.1);
    overflow: hidden;
}

.treatment-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #00BFFF 0%, 
        #0099CC 25%, 
        #00BFFF 50%, 
        #0099CC 75%, 
        #00BFFF 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.treatment-stats::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.treatment-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.treatment-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 191, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.treatment-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 191, 255, 0.15),
        0 10px 30px rgba(0, 153, 204, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
}

.treatment-stat:hover::before {
    left: 100%;
}

.treatment-stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, 
        #00BFFF 0%, 
        #0099CC 30%, 
        #007ACC 60%, 
        #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.treatment-stat:hover .treatment-stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 191, 255, 0.2));
}

.treatment-stat-label {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.treatment-stat:hover .treatment-stat-label {
    color: #2d3748;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.1;
        transform: scale(1.1);
    }
}

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

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.testimonials-modern .container {
    position: relative;
    z-index: 2;
}

.testimonials-modern .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-modern .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonials-modern .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: bold;
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover::before {
    opacity: 1;
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
    left: -30px;
}

.carousel-nav.next {
    right: -30px;
}

.carousel-nav.prev::after {
    content: '‹';
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-nav.next::after {
    content: '›';
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #0ea5e9, #8b5cf6);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.testimonial-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-modern p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    font-size: 1.3rem;
    transition: all 0.2s ease;
}

.star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Modern Testimonial Stats */
.testimonial-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-stars {
    font-size: 1.2rem;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}
.team {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.member-photo::after {
    content: '👩‍⚕️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 50%, #0d47a1 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
}

.cta h2::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Section - TESTE DE MUDANÇA */
.contact {
    padding: 60px 0; /* TESTE: Reduzido ainda mais para verificar se está funcionando */
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduzido de 5rem para 3rem */
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem; /* Reduzido de 3rem para 2.5rem */
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem; /* Reduzido de 2.5rem para 1.5rem */
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.8rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e88e5;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

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

.map-info {
    padding: 40px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-details h3 {
    margin: 0 0 15px 0;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-details h3:not(:first-child) {
    margin-top: 30px;
}

.map-details p {
    margin: 0 0 20px 0;
    color: var(--text-light);
    line-height: 1.6;
}

.map-actions {
    display: none; /* Oculto por padrão no desktop */
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.map-actions .btn {
    justify-content: center;
    text-align: center;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem; /* Reduzido de 3rem para 2.5rem */
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1e88e5, #0d47a1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduzido de 2.5rem para 2rem */
    padding-bottom: 1.2rem; /* Reduzido de 1.5rem para 1.2rem */
    border-bottom: 2px solid rgba(0, 191, 255, 0.1);
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem; /* Reduzido de 2rem para 1.5rem */
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e88e5 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
    background: linear-gradient(135deg, #1ac6ff 0%, #0d47a1 100%);
}

/* Contact Section Improvements */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.whatsapp-contact .whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.whatsapp-link:hover {
    background: #25D366;
    color: white;
}

/* Form Improvements */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    border: 2px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.form-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.form-group:has(label) .form-icon {
    top: calc(50% + 12px);
}

.form-group input,
.form-group textarea {
    padding-left: 3rem;
}

.form-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-loading {
    display: none;
}

.contact-form.loading .btn-primary .btn-icon {
    display: none;
}

.contact-form.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 768px) {
    .contact {
        padding: 50px 0; /* Reduzido de 60px para 50px */
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduzido de 40px para 30px */
    }
    
    .contact-info {
        gap: 15px; /* Reduzido de 20px para 15px */
    }
    
    .contact-item {
        padding: 15px; /* Reduzido de 20px para 15px */
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .contact-item h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .contact-item p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .contact-link {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 25px 20px; /* Reduzido de 30px 25px para 25px 20px */
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 18px; /* Reduzido de 20px para 18px */
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 35px 0; /* Reduzido de 40px para 35px */
    }
    
    .contact-content {
        gap: 25px; /* Reduzido de 30px para 25px */
    }
    
    .contact-info {
        gap: 12px; /* Reduzido de 15px para 12px */
    }
    
    .contact-item {
        padding: 12px; /* Reduzido de 15px para 12px */
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px; /* Reduzido de 15px para 12px */
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-item h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .contact-item p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .contact-link {
        font-size: 12px;
    }
    
    .contact-form {
        padding: 20px 15px; /* Reduzido de 25px 20px para 20px 15px */
    }
    
    .form-header h3 {
        font-size: 18px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    .form-group {
        margin-bottom: 15px; /* Reduzido de 18px para 15px */
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .form-group textarea {
        rows: 4;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-icon {
        display: none;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #4CAF50 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Seção Principal */
.footer-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px; /* Apenas altura definida para manter proporção */
    width: auto; /* Largura automática para preservar proporção */
    filter: brightness(0) invert(1);
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.brand-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.brand-info span {
    font-size: 16px;
    color: #b3d9ff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-badges .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-badges .badge:hover::before {
    opacity: 1;
}

.footer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    border-left-color: #764ba2;
}

.footer-badges .badge i {
    font-size: 20px;
    color: #667eea;
    z-index: 1;
    position: relative;
}

.footer-badges .badge span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    z-index: 1;
    position: relative;
    letter-spacing: 0.3px;
}

/* Seções do Footer */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.footer-section h4 i {
    color: #667eea;
    font-size: 18px;
}

/* Lista de Tratamentos */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
    position: relative;
}

.footer-list li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #667eea;
    font-weight: bold;
}

.footer-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-list li a:hover {
    color: #ffffff;
    padding-left: 16px;
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
}

.footer-list li a i {
    color: #667eea;
    font-size: 12px;
}

/* Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 18px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    border: none;
    padding: 0;
}

.contact-details p {
    font-size: 14px;
    color: #b3d9ff;
    margin: 0;
    line-height: 1.5;
}

/* Seção CTA */
.footer-cta p {
    font-size: 16px;
    color: #e0e0e0;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
}

.cta-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-btn.phone {
    background: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.cta-btn.phone:hover {
    background: #4CAF50;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.cta-btn i {
    font-size: 18px;
}

/* Links Sociais */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Footer Bottom - Improved Colors and Contrast */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-nav a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

/* Footer Animations and Visual Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Footer Main with Animation */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Footer Sections with Staggered Animation */
.footer-section {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Badge Hover Effects */
.footer-badges .badge {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-badges .badge::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.6s ease;
}

.footer-badges .badge:hover::before {
    left: 100%;
}

.footer-badges .badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Treatment Links with Hover Animation */
.footer-list li a {
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-list li a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.footer-list li a:hover::before {
    width: 15px;
}

.footer-list li a:hover {
    transform: translateX(10px);
    color: #ffffff;
}

/* CTA Buttons with Enhanced Animation */
.cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Social Links with Bounce Effect */
.social-link {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link:hover {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Footer Bottom with Slide Effect */
.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: slideIn 2s ease-in-out infinite;
}

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

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
    .footer-section {
        animation-delay: 0s;
    }
    
    .footer-badges .badge:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .social-link:hover {
        animation: none;
        transform: translateY(-2px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer,
    .footer-section,
    .footer-badges .badge,
    .footer-list li a,
    .cta-btn,
    .social-link,
    .footer-bottom::before {
        animation: none;
        transition: none;
    }
}

.footer-credit {
    text-align: center;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-credit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.footer-credit a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.footer-credit a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #764ba2;
    text-decoration: none;
}

/* CTA Buttons - Improved Colors */
.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: 2px solid transparent;
}

.cta-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-btn.phone {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.cta-btn.phone:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Social Links - Improved Colors */
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 100%);
    border-color: #e4405f;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-link.phone:hover {
    background: #667eea;
    border-color: #667eea;
}

.social-link.email:hover {
    background: #764ba2;
    border-color: #764ba2;
}

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

.footer-credit {
    text-align: center;
}

.footer-credit p {
    color: #8fa8b8;
    font-size: 13px;
    margin: 0;
}

.footer-credit i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsividade do Footer - Ajustado para 3 colunas */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-column: 1 / -1;
    }
    
    .footer-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo {
        height: 50px; /* Apenas altura definida para manter proporção */
        width: auto; /* Largura automática para preservar proporção */
    }
    
    .brand-info h3 {
        font-size: 24px;
    }
    
    .footer-badges {
        flex-direction: column;
    }
    
    .footer-section h4 {
        font-size: 18px;
        text-align: center;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .cta-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        gap: 10px;
    }
    
    .brand-info h3 {
        font-size: 20px;
    }
    
    .brand-info span {
        font-size: 14px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-list li a {
        font-size: 14px;
    }
    
    .contact-details h4 {
        font-size: 14px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .cta-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .footer-nav a {
        font-size: 13px;
    }
}

/* Map Section Styles */
@media (max-width: 480px) {
    .map-actions .btn {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
        justify-content: center;
    }
    
    .map-actions .btn-icon {
        display: none;
    }
    
    .map-actions {
        gap: 10px;
    }
    
    .map-actions .btn {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Animations and Keyframes */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-count-up {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Testimonials Modern Mobile */
    .testimonials-modern {
        padding: 4rem 0;
    }
    
    .testimonials-modern .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-carousel-container {
        margin-top: 40px;
    }
    
    .testimonials-carousel {
        height: 450px;
    }
    
    .testimonial-modern {
        margin: 0 1rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-modern p {
        font-size: 16px;
    }
    
    .quote-icon {
        font-size: 40px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .carousel-nav.prev {
        left: -25px;
    }
    
    .carousel-nav.next {
        right: -25px;
    }
    
    .carousel-nav.prev::after {
        font-size: 20px;
    }
    
    .carousel-nav.next::after {
        font-size: 20px;
    }
    
    .testimonial-author {
        padding: 1.5rem 2rem;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-stats-modern {
        grid-template-columns: 1fr;
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        order: 0; /* Imagem mantém posição natural no mobile (primeiro) */
    }
    
    .dra-image {
        max-height: 350px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    /* Treatments Mobile */
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .treatment-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* About Section Mobile */
    .about-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .floating-card {
        position: static;
        transform: none;
        margin: 1rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .treatment-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .treatment-stats,
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-main {
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        max-width: 300px;
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 20px 30px;
        margin: 8px 0;
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .nav-link i {
        margin-right: 12px;
        font-size: 1.1rem;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover i {
        opacity: 1;
        transform: scale(1.1);
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 191, 255, 0.2);
        border-color: rgba(0, 191, 255, 0.5);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
        color: #00bfff;
    }
    
    .nav-menu .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-menu .nav-link:active {
        transform: translateY(-1px) scale(1.01);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .whatsapp-header {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-header svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .about-intro h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .about-description p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat-item h4 {
        font-size: 20px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
    
    /* Map Section Mobile */
    .map-container {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 15px;
    }
    
    .map-wrapper {
        height: 300px;
        border-radius: 15px 15px 0 0;
        overflow: hidden;
    }
    
    .map-info {
        padding: 25px 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .map-details h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .map-details h3:not(:first-child) {
        margin-top: 20px;
    }
    
    .map-details p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .map-actions {
        display: flex; /* Mostrar apenas no mobile */
        margin-top: 20px;
    }
    
    .map-actions .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 16px;
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }
    
    .map-actions .btn i {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .treatment-card,
    .feature,
    .team-member {
        padding: 1.5rem;
    }
    
    /* Map Section Extra Small Screens */
    .map-wrapper {
        height: 250px;
    }
    
    .map-info {
        padding: 20px 15px;
    }
    
    .map-details h3 {
        font-size: 15px;
    }
    
    .map-details p {
        font-size: 13px;
    }
    
    .map-actions .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}