:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    background: url('../img/cta1.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.75));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 300;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2.5rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    margin: 0.5rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 50px;
    font-weight: 600;
    min-width: 250px;
}

.hero-buttons .btn i {
    font-size: 1.1em;
    vertical-align: middle;
    margin-top: -2px;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-buttons .btn-primary {
    background-color: var(--accent-color);
    border: none;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--accent-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Small */
.hero-section-small {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85));
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-section-small h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: #ffffff;
    color: var(--primary-color);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.2; }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-section .lead {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

.cta-buttons {
    margin-top: 3rem;
}

.cta-buttons .btn {
    padding: 15px 50px;
    font-size: 1.3rem;
    margin: 10px 15px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 50px;
    font-weight: 600;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-primary {
    background-color: var(--accent-color);
    border: none;
    color: white;
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navbar Customization */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.navbar .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
    padding: 0.8rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.navbar .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer Customization */
.footer {
    background-color: var(--primary-color) !important;
    color: var(--text-light);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--text-light);
}

.footer a.text-accent {
    color: var(--accent-color);
    font-weight: 500;
}

.footer a:hover {
    color: var(--accent-color) !important;
}

.footer a.text-accent:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}

/* Form Styling */
.form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Planos Cards */
.plano-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), #2980b9);
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.plano-card.destaque::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.plano-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(52, 152, 219, 0.1);
}

.plano-header i {
    font-size: 2.5rem !important;
    color: var(--accent-color);
    margin-right: 1rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.plano-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sub-plano {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.sub-plano:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sub-plano h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-plano h4 span {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.plano-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-contratar {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-contratar i {
    margin-left: 0.5rem;
}

/* Filiais Page */
.filiais-page-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filial-card-large {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.filial-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.filial-header {
    background: var(--accent-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filial-header i {
    font-size: 2rem;
}

.filial-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.filial-body {
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.info-item p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.5;
}

.central-atendimento-large {
    background: var(--accent-color);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
}

.central-atendimento-large h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.horario {
    opacity: 0.9;
    margin: 0;
}

/* Filiais Section */
.filiais-section {
    background-color: #f8f9fa;
}

.location-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-card-header {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.location-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.location-card-body {
    padding: 2rem;
}

.location-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.location-info i {
    color: #007bff;
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.location-info p {
    color: #495057;
}

.location-info .text-muted {
    color: #6c757d !important;
    font-size: 0.875rem;
}

.btn-primary.btn-block {
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Support Card Styles */
.support-card {
    background: linear-gradient(135deg, #0056b3, #007bff);
    border-radius: 15px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-info {
    display: flex;
    align-items: center;
}

.support-info i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.support-info h2 {
    margin: 0;
    font-weight: 600;
}

.support-info .lead {
    margin: 0;
    opacity: 0.9;
}

.support-contact {
    text-align: right;
}

.support-contact .phone-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-contact .horario {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Section Styles */
.hero-subtitle {
    color: white;
    font-size: 1.25rem;
    margin-top: 1rem;
    opacity: 0.9;
    max-width: 600px;
}

@media (max-width: 768px) {
    .location-card {
        margin-bottom: 1.5rem;
    }

    .support-card {
        text-align: center;
        padding: 2rem;
    }

    .support-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .support-info i {
        margin: 0 0 1rem 0;
    }

    .support-contact {
        text-align: center;
    }
}

/* Benefícios Cards */
.beneficio-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
}

.beneficio-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.beneficio-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 500;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--accent-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Contato Section */
.contato-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contato-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contato-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contato-item p {
    margin-bottom: 0.25rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: white;
}

.contato-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.mapa {
    position: relative;
    overflow: hidden;
}

.mapa iframe {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.mapa iframe:hover {
    filter: grayscale(0);
}

/* Serviços Cards */
.servico-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.servico-icon i {
    font-size: 2rem;
}

.servico-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.servico-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.servico-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.servico-features li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Serviços Detalhados */
.servico-detalhe {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.servico-detalhe h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.servico-detalhe h3 i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.servico-detalhe ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.servico-detalhe ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.servico-detalhe ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.servico-detalhe ul li:last-child {
    border-bottom: none;
}

/* História Section */
.historia-content {
    padding-right: 2rem;
}

.historia-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.historia-image img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Valores Cards */
.valor-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-icon i {
    font-size: 2rem;
}

.valor-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Diferenciais Section */
.diferencial-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-10px);
}

.diferencial-numero {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.diferencial-item h4 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.2rem;
}

/* Equipe Section */
.equipe-content {
    background: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.numero-item {
    text-align: center;
    padding: 1.5rem;
}

.numero-item .numero {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.numero-item .texto {
    color: var(--primary-color);
    font-weight: 500;
}

/* Planos Cards - Modern Design */
.plano-card.modern-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plano-card.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), #2980b9);
}

.plano-card.modern-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(52, 152, 219, 0.2);
}

.plano-card.modern-card.destaque {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    filter: none;
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, var(--accent-color), #2980b9);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 2rem !important;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.plano-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
}

.plano-card:hover .icon-wrapper i {
    color: white;
}

.header-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-content p {
    color: var(--secondary-color);
    font-size: 1rem;
    opacity: 0.8;
}

.price-tag {
    text-align: center;
    margin: 2rem 0;
    color: var(--primary-color);
}

.price-tag .currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    margin-right: 0.2rem;
}

.price-tag .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-tag .period {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.modern-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.modern-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-modern {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn-modern:hover::before {
    transform: translateX(100%);
    transition: transform 0.8s ease;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Sub-planos Cards */
.sub-planos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sub-plano-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.sub-plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sub-plano-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sub-plano-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.price {
    text-align: right;
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 500;
    vertical-align: top;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .period {
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Variações de cores para os sub-planos */
.sub-plano-card.bronze {
    background: linear-gradient(135deg, #ffd7cc20, #ffd7cc40);
}

.btn-bronze {
    background: linear-gradient(135deg, #cd7f32, #b36a2b);
}

.sub-plano-card.prata {
    background: linear-gradient(135deg, #f5f5f520, #f5f5f540);
}

.btn-prata {
    background: linear-gradient(135deg, #a7a7a7, #8f8f8f);
}

.sub-plano-card.ouro {
    background: linear-gradient(135deg, #fff4cc20, #fff4cc40);
}

.btn-ouro {
    background: linear-gradient(135deg, #ffd700, #daa520);
}

.sub-plano-card.prata-pro {
    background: linear-gradient(135deg, #e8e8e820, #e8e8e840);
}

.btn-prata-pro {
    background: linear-gradient(135deg, #8f8f8f, #737373);
}

.sub-plano-card.ouro-pro {
    background: linear-gradient(135deg, #ffd70020, #ffd70040);
}

.btn-ouro-pro {
    background: linear-gradient(135deg, #daa520, #b8860b);
}

/* WhatsApp Floating Button & Chat */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 999;
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.chat-window.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.chat-header .profile {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.chat-header .profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 2px;
}

.chat-header .profile .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-header .profile .info h4 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.chat-header .profile .info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.2;
}

.chat-header .close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chat-header .close-chat:hover {
    opacity: 1;
}

.chat-body {
    height: 450px;
    padding: 20px;
    overflow-y: auto;
    background: #E5DDD5;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.message-bubble {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}

.message-bubble.user {
    background: #DCF8C6;
    margin-left: auto;
    border-top-right-radius: 5px;
}

.message-bubble.bot {
    position: relative;
    padding-left: 45px;
    margin-left: 15px;
    background: white;
    margin-right: auto;
    border-top-left-radius: 5px;
}

.message-bubble.bot::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    transform: translateY(0);
    width: 32px;
    height: 32px;
    background-image: url('../../logotipo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
    align-self: flex-end;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-input {
    flex: 1;
    border: none;
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.chat-input:focus {
    outline: none;
    background: #e8e8e8;
}

.send-message {
    background: #25D366;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-message:hover {
    background: #1fa855;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #90a4ae;
    border-radius: 50%;
    animation: typing 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.typing-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsividade do Chat */
@media (max-width: 480px) {
    .chat-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    .chat-body {
        height: calc(100vh - 140px);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Clube de Benefícios Section - Modern Style */
.atendimento-section {
    position: relative;
    overflow: hidden;
}

.atendimento-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transform: scale(1.05);
}

.atendimento-content {
    padding: 2rem;
}

.atendimento-features .feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.atendimento-features .feature-item i {
    font-size: 1.4rem;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .atendimento-image img {
        max-width: 300px;
    }
    
    .atendimento-content {
        text-align: center;
    }
    
    .atendimento-features .feature-item {
        justify-content: center;
    }
}

.benefits-club-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.benefits-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.2; }
}

.app-screenshots-container {
    position: relative;
    perspective: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.app-main-screenshot {
    max-width: 70%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    animation: float-main 4s ease-in-out infinite;
}

@keyframes float-main {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.app-screenshots-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.app-screenshot {
    max-width: 40%;
    position: absolute;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 20px;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.screenshot-1 {
    left: 5%;
    top: 10%;
    transform: rotate(-15deg) translateZ(-50px);
    animation: float-left 3s ease-in-out infinite;
}

.screenshot-2 {
    right: 5%;
    top: 10%;
    transform: rotate(15deg) translateZ(-50px);
    animation: float-right 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float-left {
    0%, 100% { transform: rotate(-15deg) translateY(0) translateZ(-50px); }
    50% { transform: rotate(-15deg) translateY(-15px) translateZ(-50px); }
}

@keyframes float-right {
    0%, 100% { transform: rotate(15deg) translateY(0) translateZ(-50px); }
    50% { transform: rotate(15deg) translateY(-15px) translateZ(-50px); }
}

.benefits-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefits-content:hover {
    transform: translateY(-5px);
}

.benefits-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: var(--accent-color);
    font-size: 3.2rem;
    margin: 0.5rem 0;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4481eb, #04befe);
}

.benefits-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(68,129,235,0.2), rgba(4,190,254,0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4481eb, #04befe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4481eb, #04befe);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(4px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
    position: relative;
}

.benefits-cta {
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.benefits-cta .btn {
    background: linear-gradient(135deg, #4481eb, #04befe);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.benefits-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefits-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefits-cta .btn:hover::before {
    transform: translateX(100%);
}

.benefits-decoration {
    position: absolute;
    bottom: -15px;
    left: -15px;
    right: -15px;
    height: 60%;
    background: linear-gradient(135deg, #4481eb, #04befe);
    opacity: 0.2;
    filter: blur(15px);
    border-radius: 15px;
    z-index: -1;
}

@media (max-width: 768px) {
    .atendimento-section {
    position: relative;
    overflow: hidden;
}

.atendimento-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transform: scale(1.05);
}

.atendimento-content {
    padding: 2rem;
}

.atendimento-features .feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.atendimento-features .feature-item i {
    font-size: 1.4rem;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .atendimento-image img {
        max-width: 300px;
    }
    
    .atendimento-content {
        text-align: center;
    }
    
    .atendimento-features .feature-item {
        justify-content: center;
    }
}

.benefits-club-section {
        padding: 4rem 0;
    }

    .benefits-title {
        font-size: 2.2rem;
    }

    .highlight-text {
        font-size: 2.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-image-wrapper {
        margin-bottom: 2rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

/* Página de Contato */
.contact-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    padding: 6rem 0 8rem;
    color: white;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: white;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-section {
    background: white;
    position: relative;
}

.contact-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
}

.contact-method-item i {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 60, 114, 0.1);
    border-radius: 10px;
}

.contact-method-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.hours-info p {
    margin: 0;
    color: #666;
}

.work-with-us, .about-section {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.work-with-us h3, .about-section h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-link, .about-link {
    color: #1e3c72;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
}

.contact-link i, .about-link i {
    margin-right: 0.5rem;
}

.social-section {
    text-align: center;
}

.social-text {
    color: #666;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
    height: 150px;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.3);
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }

    .contact-method-item {
        padding: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* App Section Styles */
.benefits-club-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.benefits-club-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: moveBackground 30s linear infinite;
}

.benefits-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.benefits-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.highlight-text {
    color: #fff;
    font-size: 3.5rem;
    margin: 0.5rem 0;
    font-weight: 900;
    background: linear-gradient(120deg, #4481eb, #04befe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease 0.2s;
}

.benefits-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.4;
    animation: fadeInUp 1s ease 0.4s;
}

.app-features {
    margin: 3rem 0;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.app-feature-item i {
    font-size: 1.8rem;
    color: white;
    margin-right: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-feature-item .feature-text h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.app-feature-item .feature-text p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.app-screenshots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
}

.app-screenshot {
    max-width: 45%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 8px solid white;
}

.app-screenshot:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    color: white;
}

.app-btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.app-btn span {
    text-align: left;
}

.app-btn .btn-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

.app-btn .btn-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .app-screenshots {
        flex-direction: column;
        gap: 30px;
    }

    .app-screenshot {
        max-width: 75%;
    }

    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .app-btn {
        justify-content: center;
    }
}

/* Chatbot Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 360px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 600px;
}

.chat-header {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-title {
    color: #fff;
    margin: 0;
}

.chat-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

.chat-close {
    color: #fff;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    min-height: 300px;
    max-height: 400px;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.chat-message.bot {
    flex-direction: row;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-avatar i {
    color: #007bff;
    font-size: 1rem;
}

.message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chat-message.bot .message-content {
    background: #007bff;
    color: #fff;
    border-top-left-radius: 5px;
}

.chat-message.user .message-content {
    background: #e9ecef;
    color: #212529;
    border-top-right-radius: 5px;
}

.message-time {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 4px;
    text-align: right;
}

.chat-input {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #dee2e6;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
}

.chat-input input {
    flex: 1;
    border: none;
    background: none;
    padding: 8px;
    font-size: 0.95rem;
    outline: none;
}

.chat-input button {
    background: #007bff;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background: #0056b3;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    transition: transform 0.3s, background-color 0.3s;
    z-index: 999;
}

.chat-toggle:hover {
    transform: scale(1.05);
    background: #0056b3;
}

.chat-toggle i {
    font-size: 1.5rem;
}

/* Animation classes */
.chat-widget.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 1000;
    }

    .navbar-brand img {
        max-height: 60px;
    }

    .navbar-toggler {
        display: block !important;
        border: none;
        padding: 0.5rem;
        margin-right: 1rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .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='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5rem;
        height: 1.5rem;
    }

    @media (max-width: 991px) {
        .navbar-toggler {
            display: block !important;
            position: relative;
            right: 0;
            z-index: 1001;
        }

        .navbar-collapse {
            display: none;
        }

        .navbar-collapse.show {
            display: block;
        }
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        position: relative;
        z-index: 999;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }

    .navbar .btn-primary {
        margin: 0.5rem 0;
        width: 100%;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Services Section Mobile */
    .service-card {
        margin-bottom: 2rem;
    }

    /* Benefits Club Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer {
        text-align: center;
    }

    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Chat Widget Mobile */
    .chat-window {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        bottom: 0;
        right: 0;
    }

    .chat-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        margin-bottom: 1rem;
    }

    .btn-outline-primary {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Ensure chat is always accessible on mobile */
@media (max-width: 991px) {
    .chat-window.active {
        z-index: 9999;
    }

    .chat-float {
        z-index: 9998;
    }
}