/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
p, h1, h2, h3, h4, h5, h6, span, div {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Variáveis de cores da marca - Azul Profissional */
:root {
    --primary-color: #0B6A80; /* Azul principal - sua cor escolhida */
    --primary-dark: #085A6D; /* Azul escuro */
    --primary-light: #0D7A94; /* Azul claro */
    --secondary-color: #F59E0B; /* Dourado complementar */
    --accent-color: #10B981; /* Verde esmeralda */
    --accent-dark: #059669; /* Verde escuro */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --info-color: #0B6A80;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 100px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.7);
    background-color: rgba(0, 0, 0, 0.3);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    line-height: 1.2;
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(11, 106, 128, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(11, 106, 128, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(11, 106, 128, 0.05);
}

.contact-link:hover {
    background: rgba(11, 106, 128, 0.1);
    color: var(--primary-color);
}

.contact-link i {
    color: var(--primary-color);
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(11, 106, 128, 0.1);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.03) 100%);
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.3px;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}



/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: var(--light-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8fafc 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light-gray));
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon::after {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
    flex-shrink: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.service-features i {
    color: var(--success-color);
    font-size: 12px;
}

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.service-price .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.loading-services {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.loading-services i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.loading-services p {
    font-size: 1.1rem;
    margin: 0;
}

.loading-team {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.loading-team i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.loading-team p {
    font-size: 1.1rem;
    margin: 0;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* Centralização baseada na quantidade de membros */
.team-grid.team-count-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid.team-count-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid.team-count-3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--primary-color);
}

.member-photo {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 35px;
    text-align: center;
    min-height: 140px;
}

.member-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.member-info .specialty {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.member-info .experience {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light-gray));
    z-index: 1;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.benefits-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thermo-benefits {
    margin-top: 2rem;
}

.thermo-benefits h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thermo-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.thermo-benefits ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.thermo-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.thermo-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(11, 106, 128, 0.3);
}

.about-highlights {
    margin-top: 2rem;
}

.about-highlights h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-highlights ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.about-highlights ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(11, 106, 128, 0.3);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.benefits-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.enzyme-info {
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enzyme-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.enzyme-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.enzyme-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enzyme-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.enzyme-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.enzyme-info li:last-child {
    margin-bottom: 0;
}

.ozone-info {
    padding: 25px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ozone-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.ozone-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.4);
}

.ozone-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ozone-info .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ozone-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ozone-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ozone-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ozone-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.ozone-info li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
}

.ozone-info li:last-child {
    margin-bottom: 0;
}

.injectable-info {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d8aa3 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.injectable-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.injectable-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(11, 106, 128, 0.3);
}

.injectable-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.injectable-info .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.injectable-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.injectable-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.injectable-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.injectable-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.injectable-info li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
}

.injectable-info li:last-child {
    margin-bottom: 0;
}

.injectable-info strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .benefits-cards-section .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-cards-section .section-header p {
        font-size: 1rem;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .enzyme-info,
    .ozone-info,
    .injectable-info {
        padding: 25px;
    }
    
    .enzyme-info h4,
    .ozone-info h4,
    .injectable-info h4 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .enzyme-info li,
    .ozone-info li,
    .injectable-info li {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .benefits-cards-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-cards-section .section-header p {
        font-size: 0.9rem;
    }
    
    .benefits-cards {
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .enzyme-info,
    .ozone-info,
    .injectable-info {
        padding: 20px;
    }
    
    .enzyme-info h4,
    .ozone-info h4,
    .injectable-info h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .ozone-info .subtitle,
    .injectable-info .subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .ozone-info p,
    .injectable-info p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .ozone-info h5,
    .injectable-info h5 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .enzyme-info li,
    .ozone-info li,
    .injectable-info li {
        font-size: 12px;
        margin-bottom: 8px;
        padding-left: 18px;
    }
    
    .service-card {
        padding: 25px 15px;
        min-height: 400px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .service-features {
        margin-bottom: 16px;
    }
    
    .service-features li {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.experience-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.experience-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.experience-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}



/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Inverter a ordem: imagem à esquerda, texto à direita */
.about-content {
    grid-template-areas: "image text";
}

.about-text {
    grid-area: text;
}

.about-image {
    grid-area: image;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.feature i {
    color: var(--success-color);
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    width: 100%;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

.loading-carousel,
.loading-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.loading-carousel i,
.loading-image i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Appointment Section */
.appointment {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    margin-top: 50px;
}

.appointment::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.appointment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.appointment-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-method i {
    font-size: 20px;
    color: var(--accent-color);
    width: 24px;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.whatsapp-contact .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.whatsapp-contact .whatsapp-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.whatsapp-contact .whatsapp-link:hover i {
    background: var(--accent-color);
    color: white;
}

.appointment-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

.appointment-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent zoom on iOS */
@media screen and (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-main {
    grid-column: 1;
}

.footer-description {
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.8;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links .social-link {
    color: var(--text-muted);
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links .social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section a i {
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-section a:hover i {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-item div strong {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item div p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    opacity: 0.9;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: var(--text-muted);
    font-size: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content,
    .benefits-content,
    .about-content,
    .appointment-content {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
        margin-top: 80px;
        border-radius: 0 0 20px 20px;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .carousel-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid rgba(11, 106, 128, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(11, 106, 128, 0.05);
        color: var(--primary-color);
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 16px;
        justify-content: center;
    }
    
    .benefits-content,
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-areas: "image" "text";
        gap: 30px;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .about-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        min-height: 400px;
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-features {
        margin: 20px 0;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .contact-link span {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-section ul li {
        margin-bottom: 12px;
    }
    
    .footer-section a {
        font-size: 0.95rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 20px;
        text-align: center;
    }
    
    .feature i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid.team-count-1 {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .team-grid.team-count-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .team-member {
        min-height: 350px;
    }
    
    .member-photo {
        height: 180px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-info .specialty {
        font-size: 0.9rem;
    }
    
    .member-info .experience {
        font-size: 0.85rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-item {
        padding: 20px 15px;
        text-align: center;
    }
    
    .trust-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .trust-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .trust-item p {
        font-size: 0.9rem;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .injectable-info,
    .ozone-info {
        padding: 25px;
        min-height: auto;
    }
    
    .injectable-info h4,
    .ozone-info h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .injectable-info .subtitle,
    .ozone-info .subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .injectable-info p,
    .ozone-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .injectable-info h5,
    .ozone-info h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .injectable-info ul,
    .ozone-info ul {
        gap: 12px;
    }
    
    .injectable-info li,
    .ozone-info li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 20px;
    }
    
    .appointment {
        padding: 60px 0;
    }
    
    .appointment-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .appointment-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .contact-method {
        padding: 20px;
        text-align: center;
    }
    
    .contact-method i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-method h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .contact-method p {
        font-size: 0.95rem;
    }
    
    .appointment-form {
        padding: 30px 20px;
    }
    
    .appointment-form h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .whatsapp-contact {
        margin-top: 30px;
    }
    
    .whatsapp-link {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 280px;
        margin-top: 70px;
        border-radius: 0 0 15px 15px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .carousel-content h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .carousel-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .carousel-indicators {
        bottom: 8px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text {
        padding: 0;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 15px;
        margin: 25px 0;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        max-width: 280px;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .services,
    .team,
    .about,
    .appointment {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 20px;
        min-height: 350px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-features {
        margin: 15px 0;
    }
    
    .service-features li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .service-price {
        margin-top: 15px;
    }
    
    .service-price .price {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid.team-count-1,
    .team-grid.team-count-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .team-member {
        min-height: 320px;
    }
    
    .member-photo {
        height: 160px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-info .specialty {
        font-size: 0.85rem;
    }
    
    .member-info .experience {
        font-size: 0.8rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 15px 12px;
    }
    
    .trust-item i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .trust-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .trust-item p {
        font-size: 0.85rem;
    }
    
    .benefits-cards {
        gap: 20px;
    }
    
    .injectable-info,
    .ozone-info {
        padding: 20px;
    }
    
    .injectable-info h4,
    .ozone-info h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .injectable-info .subtitle,
    .ozone-info .subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .injectable-info p,
    .ozone-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .injectable-info h5,
    .ozone-info h5 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .injectable-info ul,
    .ozone-info ul {
        gap: 10px;
    }
    
    .injectable-info li,
    .ozone-info li {
        font-size: 0.8rem;
        line-height: 1.4;
        padding-left: 18px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .feature h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat {
        padding: 15px 12px;
    }
    
    .stat h3 {
        font-size: 1.6rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .appointment {
        padding: 50px 0;
    }
    
    .appointment-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .appointment-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .contact-methods {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-method i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .contact-method h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-method p {
        font-size: 0.85rem;
    }
    
    .appointment-form {
        padding: 25px 15px;
    }
    
    .appointment-form h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .whatsapp-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        gap: 15px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 18px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error states */
.success {
    border-color: var(--success-color) !important;
}

.error {
    border-color: var(--error-color) !important;
}

/* Admin specific styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.admin-stat {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.admin-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-stat p {
    color: var(--text-light);
    font-weight: 500;
}

.admin-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.admin-table tr:hover {
    background: var(--light-gray);
}

.btn-action {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.btn-confirm {
    background: var(--success-color);
    color: var(--white);
}

.btn-cancel {
    background: var(--error-color);
    color: var(--white);
}

.btn-realized {
    background: var(--primary-color);
    color: var(--white);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.status-pendente {
    color: var(--warning-color);
    font-weight: 600;
}

.status-confirmado {
    color: var(--success-color);
    font-weight: 600;
}

.status-cancelado {
    color: var(--error-color);
    font-weight: 600;
}

.status-realizado {
    color: var(--primary-color);
    font-weight: 600;
} 

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-btn i {
    font-size: 24px;
}

/* Treatment Pages Styles */
.treatment-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.treatment-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.treatment-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.treatment-hero-text {
    max-width: 600px;
}

.treatment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.treatment-badge i {
    font-size: 18px;
    color: var(--accent-color);
}

.treatment-badge span {
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.treatment-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.treatment-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.treatment-hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.treatment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.treatment-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.treatment-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.treatment-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.treatment-hero-image {
    text-align: center;
}

.treatment-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.treatment-benefits {
    padding: 100px 0;
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-card .benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.how-it-works {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.treatment-details {
    padding: 100px 0;
    background: var(--light-bg);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-text);
    line-height: 1.2;
}

.details-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.details-features {
    display: grid;
    gap: 15px;
}

.details-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.details-features .feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.details-features .feature span {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.details-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.treatment-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Treatment Pages */
@media (max-width: 768px) {
    .treatment-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .treatment-hero h1 {
        font-size: 2.5rem;
    }
    
    .treatment-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-buttons {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .details-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Treatment Links Section */
.treatment-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.treatment-link-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.treatment-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.treatment-link-icon i {
    font-size: 32px;
    color: white;
}

.treatment-link-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.treatment-link-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.treatment-link-content .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .treatment-links {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
    
    .treatment-link-card {
        padding: 30px 20px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive adjustments for floating WhatsApp */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-whatsapp-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-whatsapp-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 18px;
    }
}

/* Benefits Cards Section */
.benefits-cards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-cards-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-cards-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b6a80;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-cards-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.benefits-cards-section .benefits-cards {
    margin: 0;
} 