/* Custom CSS for Maria Izabel Feltrin - Fisioterapeuta */

:root {
    --primary-color: #f1debe;
    --secondary-color: #d26709;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 0;
}

main {
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove qualquer espaçamento entre seções */
section {
    margin: 0 !important;
}

.hero-section + section {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* Custom Bootstrap Colors */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b8570a;
    border-color: #b8570a;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

.text-primary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Header Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--primary-color);
}

.navbar {
    background-color: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    margin-bottom: 0;
}

.navbar-brand {
    font-weight: 600;
    color: var(--secondary-color) !important;
    font-size: 1.5rem;
}

.navbar-brand small {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 400;
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--dark-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Navbar Toggler Custom Style */
.navbar-toggler {
    border: 2px solid var(--secondary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(210, 103, 9, 0.25);
    border-color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d26709' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

.navbar-toggler:hover {
    background-color: rgba(210, 103, 9, 0.1);
    border-color: var(--secondary-color);
}

/* New Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 103, 9, 0.1) 0%, rgba(241, 222, 190, 0.2) 100%);
    border-radius: 0 0 0 100px;
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
    padding-top: 1rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    font-family: 'Comfortaa', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(210, 103, 9, 0.3);
}

.hero-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Cambria', serif;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.hero-description-new {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 90%;
}

.hero-buttons-new {
    margin-top: 0.5rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

.hero-image-new {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-professional-image {
    width: 100%;
    height: auto;
    max-width: 200px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.hero-decoration-circle {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(210, 103, 9, 0.2) 0%, rgba(241, 222, 190, 0.3) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--secondary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-info-badge {
    position: absolute;
    bottom: 10px;
    transform: translateX(-50%);
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 4;
    animation: slideInUp 1s ease-out 0.5s both;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.badge-content span {
    color: var(--text-light);
    font-size: 0.7rem;
}

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

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

/* Old Hero Section Styles (keeping for compatibility) */
.hero-section {
    background: linear-gradient(135deg, rgba(241, 222, 190, 0.6) 0%, rgba(241, 222, 190, 0.4) 100%), url('../images/background.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: scroll;
    padding-top: 140px;
    padding-bottom: 0;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

/* Section Divider */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    margin: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

/* Lead Modal Styles */
.modal-bottom-right {
    position: fixed;
    bottom: 30px;
    right: 100px;
    margin: 0;
    max-width: 380px;
    width: 100%;
}

.lead-modal-content {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideInUp 0.4s ease-out;
}

.lead-modal-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem;
}

.lead-modal-header .modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.lead-modal-body {
    background: white;
    padding: 1.5rem;
}

.lead-modal-body .text-muted {
    color: var(--text-light) !important;
    font-size: 0.9rem;
}

.lead-modal-body .form-label {
    text-align: left;
    display: block;
    width: 100%;
}

.lead-form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.lead-form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 103, 9, 0.25);
}

.lead-modal-footer {
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.lead-btn-whatsapp {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.lead-btn-whatsapp:hover {
    background-color: #b8570a;
    border-color: #b8570a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 103, 9, 0.4);
    color: white;
}

.btn-outline-secondary {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

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

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-bottom-right {
        position: fixed;
        bottom: 20px;
        left: 5%;
        right: 5%;
        max-width: none;
        width: 90%;
        margin: 0 auto;
        transform: none;
    }
    
    .lead-modal-content {
        border-radius: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .lead-modal-header {
        padding: 1rem;
    }
    
    .lead-modal-header .modal-title {
        font-size: 1rem;
    }
    
    .lead-modal-body {
        padding: 1rem;
    }
    
    .lead-modal-footer {
        padding: 1rem;
    }
    
    .lead-form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .lead-btn-whatsapp {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .modal-bottom-right {
        right: 50px;
    }
}

/* Fade-in animation for contact section */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(241, 222, 190, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-card .contact-icon {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-method-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-detail {
    background: var(--light-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-contact {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #0d6b5c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-email {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: white;
}

.btn-email:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 103, 9, 0.4);
    color: white;
}

.btn-phone {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    color: white;
}

.quick-contact-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(210, 103, 9, 0.1);
}

.form-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modern-input {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modern-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 103, 9, 0.25);
}

.form-floating > label {
    color: var(--text-light);
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 103, 9, 0.4);
}

.benefits-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(241, 222, 190, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(241, 222, 190, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

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

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.guarantee-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.guarantee-badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-method-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .quick-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-benefits {
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Reduce spacing for first section after hero */
#quem-sou {
    background: var(--white);
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* About Section */
.about-content h3 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 2rem;
}

.about-content h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.about-content ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

.about-content .mb-4:last-child {
    margin-bottom: 0 !important;
}

/* About Section Image - Integrated Style */
.about-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(-45deg, 
        rgba(241, 222, 190, 0.2) 0%, 
        rgba(210, 103, 9, 0.08) 25%, 
        rgba(241, 222, 190, 0.15) 50%, 
        rgba(210, 103, 9, 0.05) 75%, 
        rgba(241, 222, 190, 0.2) 100%);
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    z-index: 1;
    animation: gentleFloat 6s ease-in-out infinite;
}



.about-professional-image {
    width: 100%;
    height: auto;
    max-width: 380px;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.05);
}

.about-professional-image:hover {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.02);
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    }
    25% { 
        transform: translateY(-3px) rotate(0.5deg);
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
    50% { 
        transform: translateY(-2px) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    }
    75% { 
        transform: translateY(-4px) rotate(-0.5deg);
        border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
    }
}

/* Service Cards */
.service-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

/* New Simple Services List */
.services-list {
    background: linear-gradient(135deg, #ffffff 0%, rgba(241, 222, 190, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(210, 103, 9, 0.2);
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(210, 103, 9, 0.15);
}

.service-icon-simple {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(210, 103, 9, 0.3);
}

.service-content {
    flex: 1;
}

.service-title-simple {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-description-simple {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-detail {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-detail h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-detail p {
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Demand Categories */
.demand-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.demand-info-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.4rem;
}

.demand-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.modality-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.modality-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

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

.evaluation-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: justify;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
}

.stars {
    color: #ffc107;
}

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

.testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-author small {
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item div strong {
    color: var(--secondary-color);
    display: block;
    font-weight: 600;
}

.contact-item div p {
    margin: 0;
    color: var(--text-light);
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(241, 222, 190, 0.25);
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--light-color);
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo img {
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-section h5 {
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--secondary-color) !important;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--secondary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--dark-color) !important;
}

.footer-section .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section .social-links a:hover {
    background-color: var(--dark-color);
    color: var(--white) !important;
    transform: translateY(-3px);
}

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

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

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.btn-back-to-top {
    display: none;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 103, 9, 0.3);
}

.btn-back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-back-to-top.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Footer mobile styles */
    .footer-section .col-lg-4 {
        text-align: center !important;
        margin-bottom: 2rem;
    }
    
    .footer-section .contact-info {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
        padding-left: 0;
    }
    
    .footer-section .social-links {
        justify-content: center;
        display: flex;
        gap: 1rem;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col, [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        background: linear-gradient(135deg, rgba(241, 222, 190, 0.6) 0%, rgba(241, 222, 190, 0.4) 100%), url('../images/background.jpg');
        background-size: cover;
        background-position: center right;
        background-attachment: scroll;
        padding-top: 120px;
        padding-bottom: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-info-card,
    .demand-info-card,
    .testimonial-card,
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .modality-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
    
    .btn-back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand small {
        font-size: 0.8rem;
    }
    
    #quem-sou {
        padding-top: 15px;
        padding-bottom: 60px;
        margin-top: 0;
    }
    
    .about-image-container {
        max-width: 400px;
    }
    
    .about-professional-image {
        max-width: 350px;
    }
    

}

@media (max-width: 576px) {
    
    .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
        .hero-section-new {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .hero-section-new::before {
        width: 100%;
        border-radius: 0;
    }

    .hero-section-new .row {
        flex-direction: column;
    }

    .hero-section-new .col-lg-7 {
        order: 3;
    }

    .hero-section-new .col-lg-5 {
        order: 2;
    }

    .hero-content-new {
        padding-right: 1rem;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-section-new .hero-badge {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        margin-bottom: 0;
    }
    
    .hero-content-new .hero-badge {
        display: none;
    }
    
    .hero-section-new::after {
        content: 'PILATES ONLINE';
        position: absolute;
        top: 160px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
        color: white;
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 400;
        font-family: 'Comfortaa', sans-serif;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(210, 103, 9, 0.3);
        z-index: 10;
    }

    .hero-title-new {
        font-size: 2.5rem;
        font-family: 'Cambria', serif;
    }

    .hero-description-new {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-image-new {
        margin-top: 1rem;
        position: relative;
    }

    .hero-info-badge {
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
    }

    .hero-section-new {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .hero-section-new .row {
        flex-direction: column;
    }

    .hero-section-new .col-lg-7 {
        order: 3;
    }

    .hero-section-new .col-lg-5 {
        order: 2;
    }

    .hero-content-new {
        margin-top: 2rem;
        text-align: center;
    }

    .hero-content-new .hero-badge {
        display: none;
    }

    .hero-section-new::after {
        content: 'PILATES ONLINE';
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
        color: white;
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 400;
        font-family: 'Comfortaa', sans-serif;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(210, 103, 9, 0.3);
        z-index: 10;
    }

    .hero-title-new {
        font-size: 2rem;
        font-family: 'Cambria', serif;
    }

    .hero-description-new {
        font-size: 1rem;
    }

    .btn-hero-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .hero-decoration-circle {
        width: 80px;
        height: 80px;
    }

    .hero-decoration-dots {
        width: 60px;
        height: 60px;
    }

    .hero-info-badge {
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        z-index: 4;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 0;
        background-attachment: scroll;
        background: linear-gradient(135deg, rgba(241, 222, 190, 0.6) 0%, rgba(241, 222, 190, 0.4) 100%), url('../images/background.jpg');
        background-size: cover;
        background-position: center right;
    }

    .hero-image {
        display: none;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand small {
        font-size: 0.7rem;
    }
    
    #quem-sou {
        padding-top: 10px;
        padding-bottom: 50px;
        margin-top: 0;
    }
    
    .about-image-container {
        max-width: 350px;
    }
    
    .about-professional-image {
        max-width: 300px;
    }
    

    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-info-card,
    .demand-info-card,
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .modality-card {
        padding: 1rem;
    }
    
    .evaluation-text,
    .demand-description {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Atendimentos Section Styles */
.atendimentos-bg {
    background: linear-gradient(135deg, 
        rgba(241, 222, 190, 0.3) 0%, 
        rgba(255, 255, 255, 0.9) 25%, 
        rgba(241, 222, 190, 0.2) 50%, 
        rgba(255, 255, 255, 0.95) 75%, 
        rgba(241, 222, 190, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.atendimentos-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(210, 103, 9, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 222, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(210, 103, 9, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.atendimentos-bg .container {
    position: relative;
    z-index: 2;
}

.atendimentos-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

/* New Atendimentos Section Theme - Blue */
.evaluation-process-card {
    background: linear-gradient(135deg, rgba(241, 222, 190, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(210, 103, 9, 0.2);
    margin-bottom: 2rem;
}

.process-icon-wrapper {
    margin-bottom: 1.5rem;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(210, 103, 9, 0.3);
    margin-bottom: 1rem;
}

.process-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.process-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 1.5rem;
    background: rgba(241, 222, 190, 0.3);
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
}

/* New Integrated Attendance Methods Section */
.attendance-methods-section {
    padding: 2rem 0;
}

.methods-header {
    position: relative;
    margin-bottom: 3rem;
}

.methods-icon-integrated {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(210, 103, 9, 0.3);
    position: relative;
}

.methods-icon-integrated::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid rgba(210, 103, 9, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.methods-title-integrated {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.methods-subtitle-integrated {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.methods-content {
    max-width: 1000px;
    margin: 0 auto;
}

.method-option {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.method-option.reverse {
    flex-direction: row-reverse;
}

.method-option.reverse .method-info {
    text-align: right;
    padding-right: 0;
    padding-left: 3rem;
}

.method-visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.method-icon-integrated {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.group-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
}

.individual-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    box-shadow: 0 15px 30px rgba(210, 103, 9, 0.3);
}

.method-icon-integrated:hover {
    transform: scale(1.1) rotate(5deg);
}

.method-connector {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.method-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid var(--secondary-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transform: translateY(-50%);
}

.method-connector.reverse::before {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 12px solid var(--secondary-color);
}

.method-info {
    flex: 1;
    padding-left: 3rem;
}

.method-title-integrated {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.method-title-integrated::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.method-option.reverse .method-title-integrated::after {
    left: auto;
    right: 0;
}

.method-description-integrated {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive adjustments for Atendimentos section */
@media (max-width: 768px) {
    .evaluation-process-card {
        padding: 2rem 1.5rem;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-title {
        font-size: 1.6rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .attendance-methods-section {
        padding: 1rem 0;
    }
    
    .methods-icon-integrated {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .methods-title-integrated {
        font-size: 1.8rem;
    }
    
    .methods-subtitle-integrated {
        font-size: 1rem;
    }
    
    .method-option {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .method-option.reverse {
        flex-direction: column !important;
    }
    
    .method-option.reverse .method-info {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    
    .method-visual {
        flex: none;
        margin-bottom: 2rem;
    }
    
    .method-connector {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }
    
    .method-connector::before {
        top: -10px;
        right: 50%;
        transform: translateX(50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 12px solid var(--secondary-color);
        border-top: none;
    }
    
    .method-connector.reverse::before {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 12px solid var(--secondary-color);
        border-top: none;
    }
    
    .method-info {
        padding-left: 0;
    }
    
    .method-title-integrated {
        font-size: 1.5rem;
    }
    
    .method-title-integrated::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .method-option.reverse .method-title-integrated::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .method-description-integrated {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-image-container {
        padding: 1rem;
    }
    
    .about-professional-image {
        max-width: 350px;
    }
}

/* Fixed Benefit Cards Styles */
.benefit-card-fixed {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card-fixed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.benefit-card-full {
    min-height: 200px;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.benefit-icon-wrapper {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.benefit-card-full .benefit-icon-wrapper {
    margin-bottom: 0;
}

.benefit-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(210, 103, 9, 0.3);
    margin: 0 auto;
}

.benefit-card-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 0;
}

.benefit-card-description {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.benefit-card-full .benefit-card-description {
    text-align: center;
}

/* Responsive adjustments for benefit cards */
@media (max-width: 768px) {
    .benefit-card-fixed {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .benefit-card-full {
        flex-direction: column;
        text-align: center;
        min-height: 220px;
        gap: 1rem;
    }
    
    .benefit-card-full .benefit-card-description {
        text-align: center;
    }
    
    .benefit-card-full .benefit-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .services-list {
        padding: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .service-icon-simple {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .method-option {
        flex-direction: column;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .method-option.reverse {
        flex-direction: column;
    }
    
    .method-option.reverse .method-info {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        padding-top: 1rem;
    }
    
    .method-info {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .method-visual {
        flex: none;
        margin-bottom: 1rem;
    }
    
    .method-connector {
        display: none;
    }
    
    .method-title-integrated::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .method-option.reverse .method-title-integrated::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .benefit-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .benefit-card-title {
        font-size: 1.1rem;
    }
    
    .benefit-card-description {
        font-size: 0.95rem;
    }
}

/* Social Media Section Styles */
.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.social-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.social-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.linkedin-card .social-icon {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.facebook-card .social-icon {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbf 100%);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.instagram-card .social-icon {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #F77737 100%);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

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

.social-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.social-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-social {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    border-color: #0077B5;
    color: white;
}

.btn-linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #003d5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
    color: white;
}

.btn-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dbf 100%);
    border-color: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #0d5dbf 0%, #094a99 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    color: white;
}

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

.btn-instagram:hover {
    background: linear-gradient(135deg, #c13651 0%, #6d2d96 50%, #d6632e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
    color: white;
}

/* Responsive adjustments for social media */
@media (max-width: 768px) {
    .social-card {
        min-height: 250px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .social-title {
        font-size: 1.8rem;
    }
    
    .social-subtitle {
        font-size: 1rem;
    }
    
    .social-card h4 {
        font-size: 1.2rem;
    }
    
    .social-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-social {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .social-card {
        margin-bottom: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-title {
        font-size: 1.5rem;
    }
    
    .btn-social {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================
   NOVA SEÇÃO DE BENEFÍCIOS - TIMELINE
   ============================ */

.benefits-modern-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.benefits-modern-section::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="25" cy="25" r="1" fill="%23f1debe" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d26709" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f1debe" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23d26709" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23f1debe" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

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

.benefits-timeline {
    position: relative;
    padding: 2rem 0;
}

.benefits-timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 95px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 70px;
    width: 4px;
    height: calc(100% + 3rem - 70px);
    background: linear-gradient(180deg, rgba(241, 222, 190, 0.8) 0%, var(--secondary-color) 50%, rgba(241, 222, 190, 0.8) 100%);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.7;
}

.timeline-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: -2px;
    top: 0;
    z-index: 3;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 5px solid white;
    z-index: 10;
}

.timeline-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse-timeline 2s infinite;
    z-index: -1;
}



.timeline-icon.strength {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.timeline-icon.awareness {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.timeline-icon.conditioning {
    background: linear-gradient(135deg, #e67e22, var(--secondary-color));
}

.timeline-icon.performance {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.timeline-icon.pain-relief {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(241, 222, 190, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.benefit-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(210, 103, 9, 0.3);
}

.timeline-title {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.benefit-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--primary-color), rgba(241, 222, 190, 0.8));
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 103, 9, 0.2);
}

.highlight-tag:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.highlight-tag i {
    font-size: 0.7rem;
}

/* Call to Action */
.benefits-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(241, 222, 190, 0.8) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefits-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 103, 9, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

.benefits-cta .cta-title {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.benefits-cta .cta-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-cta-btn {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(210, 103, 9, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefits-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 103, 9, 0.4);
    background: linear-gradient(135deg, #b8570a, var(--secondary-color));
}

/* Animações */
@keyframes pulse-timeline {
    0% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 65px;
        margin-bottom: 2rem;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 18px;
        height: calc(100% + 2rem - 50px);
        top: 50px;
    }
    
    .timeline-marker {
        left: -2px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        left: -10px;
        top: 20px;
        border-right-width: 10px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    
    .benefit-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        top: -5px;
        right: -5px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .timeline-description {
        font-size: 0.9rem;
    }
    
    .highlight-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .benefits-cta {
        padding: 2rem 1rem;
    }
    
    .benefits-cta .cta-title {
        font-size: 1.5rem;
    }
    
    .benefits-cta .cta-subtitle {
        font-size: 1rem;
    }
    
    .benefits-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 16px;
        height: calc(100% + 2rem - 45px);
        top: 45px;
    }
    
    .timeline-marker {
        left: -2px;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .benefits-cta .cta-title {
        font-size: 1.3rem;
    }
    
    .benefit-highlights {
        justify-content: center;
    }
} 