/* Variables */
:root {
    --primary-color: #01ad65;
    --secondary-color: #f7f2d2;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

/* Prevent horizontal scroll */
section {
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: var(--shadow);
}

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

.navbar-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 60px;
    width: 60px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(1, 173, 101, 0.3);
}

.btn-primary:hover {
    background: #00964d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 173, 101, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(1, 173, 101, 0.7), rgba(0, 217, 126, 0.65)),
                url('../img/background.jpg') center/cover;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    padding-top: 80px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-section .lead {
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.hero-section .col-lg-5,
.hero-section .col-lg-6,
.hero-section .col-xl-4 {
    text-align: center;
}

.hero-location {
    font-size: 1.15rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.hero-location i {
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.hero-feature {
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-buttons {
    text-align: center;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

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

/* Phone Mockup - Instagram Style */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.phone-frame {
    width: 340px;
    height: 680px;
    background: #1c1c1e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 3px #2c2c2e,
                0 0 0 6px #1c1c1e;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #1c1c1e;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Instagram Header */
.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #efefef;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    color: #262626;
}

.instagram-header i {
    color: #262626;
    font-size: 18px;
}

/* Services Carousel */
#servicesCarousel {
    background: #000;
}

#servicesCarousel .carousel-inner {
    height: 520px;
}

#servicesCarousel .carousel-item {
    height: 520px;
    transition: transform 0.6s ease-in-out;
}

#servicesCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Indicators */
.instagram-indicators {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 8px;
    display: flex;
    gap: 4px;
    z-index: 5;
}

.instagram-indicators button {
    flex: 1;
    height: 2px;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 1px;
    opacity: 1;
}

.instagram-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Instagram Actions */
.instagram-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.actions-left {
    display: flex;
    gap: 16px;
}

.instagram-actions i {
    font-size: 24px;
    color: #262626;
    cursor: pointer;
    transition: all 0.2s ease;
}

.instagram-actions i:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-spacing {
    padding: 100px 0;
    margin-top: 0;
    background: white;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00d97e);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Ramos Cards */
.ramo-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    cursor: pointer;
}

.ramo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.ramo-card:hover .icon-wrapper {
    transform: rotate(360deg);
    border-radius: 50%;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.ramo-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Horário Card */
.horario-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.horario-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item:hover {
    background: var(--secondary-color);
    border-radius: 10px;
}

.horario-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.horario-icon i {
    font-size: 1.5rem;
    color: white;
}

.horario-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.horario-content p {
    color: #6c757d;
    margin: 0;
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--secondary-color);
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-item p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-features {
    max-width: 600px;
    margin: 0 auto;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.cta-feature i {
    font-size: 2rem;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
}

.footer p {
    margin: 0.5rem 0;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #E1306C, #C13584);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 53, 132, 0.5);
    color: white;
}

.social-link i {
    font-size: 1.3rem;
}

.instagram-handle {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.instagram-handle:hover {
    color: #C13584;
    transform: scale(1.05);
}

.footer-dev-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dev-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-dev-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-dev-info a:hover {
    color: #00d97e;
    text-decoration: underline;
}

/* Footer responsive line break */
.mobile-break {
    display: none;
}

.separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Show break on mobile, hide separator */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    
    .separator {
        display: none;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(1, 173, 101, 0.5);
    z-index: 1000;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: #00964d;
    box-shadow: 0 8px 25px rgba(1, 173, 101, 0.7);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    opacity: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Modal */
.whatsapp-modal {
    border-radius: 25px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.btn-close-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    color: white;
    position: relative;
}

.whatsapp-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}


.modal-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-modal-header h4 {
    font-weight: 700;
    color: white;
    margin: 0;
}

.whatsapp-modal-content {
    padding: 2rem;
    background: white;
}

.whatsapp-contact-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.whatsapp-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.whatsapp-contact-card:hover {
    background: white;
    border-color: #25D366;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
}

.contact-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.contact-avatar i {
    font-size: 1.5rem;
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-info h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    font-size: 1.1rem;
}

.contact-number {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-action {
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-contact-card:hover .contact-action {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-action i {
    font-size: 1.5rem;
    color: white;
}

/* Phone Card Styles */
.phone-card::before {
    background: linear-gradient(90deg, transparent, rgba(1, 173, 101, 0.1), transparent);
}

.phone-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(1, 173, 101, 0.2);
}

.phone-card .contact-avatar {
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
}

.phone-card .contact-action {
    background: var(--primary-color);
}

.phone-card:hover .contact-action {
    box-shadow: 0 5px 15px rgba(1, 173, 101, 0.4);
}

.whatsapp-modal-footer {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    margin-top: 1rem;
}

.whatsapp-modal-footer i {
    color: var(--primary-color);
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.mobile-drawer.active {
    pointer-events: auto;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #00d97e);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.drawer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.drawer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.drawer-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-drawer-nav {
    flex: 1;
    padding: 20px 0;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.drawer-nav-link:hover::before {
    transform: scaleY(1);
}

.drawer-nav-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 30px;
}

.drawer-nav-link i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.mobile-drawer-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.mobile-drawer-footer p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.drawer-social {
    display: flex;
    justify-content: center;
}

.drawer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.drawer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    /* Prevent horizontal scroll on mobile */
    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .phone-mockup {
        max-width: 100%;
        padding: 1rem;
        overflow: hidden;
    }
    
    .phone-frame {
        max-width: 100%;
        width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on smaller mobile */
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }
    
    .phone-frame {
        width: 280px;
    }
    
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        text-align: center;
    }
    
    .hero-section .container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .hero-section .row {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        margin: 0;
    }
    
    .hero-section .col-lg-5,
    .hero-section .col-lg-6,
    .hero-section .col-lg-8,
    .hero-section .col-xl-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 400px;
    }
    
    .hero-features {
        margin: 1.5rem auto;
        gap: 0.8rem;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-feature {
        font-size: 1.05rem;
        padding: 0.85rem 1.5rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .horario-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .horario-icon {
        margin: 0 0 1rem 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto !important;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: 50px;
        width: 50px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 45px;
        width: 45px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    /* Improve mobile card layouts */
    .ramo-card {
        padding: 1.25rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .ramo-card h5 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .contact-card,
    .horario-card {
        padding: 1.75rem 1.25rem;
        margin: 0 1rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 30px;
        font-size: 1.25rem;
    }
    
    /* Modal improvements */
    .whatsapp-modal {
        margin: 1rem;
    }
    
    .whatsapp-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .whatsapp-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .modal-logo {
        width: 100px;
        height: 100px;
    }
    
    .whatsapp-modal-content {
        padding: 1.5rem;
    }
    
    .whatsapp-contact-card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-avatar {
        width: 45px;
        height: 45px;
    }
    
    .contact-avatar i {
        font-size: 1.25rem;
    }
    
    .contact-info h6 {
        font-size: 1rem;
    }
    
    .contact-number {
        font-size: 0.85rem;
    }
    
    .contact-action {
        width: 40px;
        height: 40px;
    }
    
    .contact-action i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    /* Prevent horizontal scroll on extra small screens */
    body,
    html {
        overflow-x: hidden !important;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .phone-frame {
        width: 260px;
        max-width: calc(100vw - 40px);
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-section .lead {
        font-size: 1.05rem;
        padding: 0 1rem;
        text-align: center;
        max-width: 350px;
    }
    
    .hero-features {
        margin: 1.25rem auto;
        gap: 0.6rem;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-feature {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        max-width: 260px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        max-width: 260px;
        font-size: 0.95rem;
        text-align: center;
        margin: 0.5rem auto;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
        padding: 0 1.5rem;
    }
    
    .cta-buttons .btn {
        max-width: 260px;
    }
    
    .mobile-drawer-content {
        width: 90%;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-logo {
        height: 45px;
        width: 45px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 40px;
        width: 40px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    /* Extra small screens - cards */
    .ramo-card {
        padding: 1rem 0.5rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .icon-wrapper i {
        font-size: 1.25rem;
    }
    
    .ramo-card h5 {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .contact-card,
    .horario-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-item {
        padding: 1.25rem 0.75rem;
    }
    
    .contact-item i {
        font-size: 2rem;
    }
    
    .contact-item h5 {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 80px;
        right: 25px;
        font-size: 1.1rem;
    }
    
    /* Modal for extra small screens */
    .whatsapp-modal {
        margin: 0.5rem;
    }
    
    .whatsapp-modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .whatsapp-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .modal-logo {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-modal-content {
        padding: 1rem;
    }
    
    .whatsapp-contact-card {
        padding: 1rem;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
    }
    
    .contact-info h6 {
        font-size: 0.95rem;
    }
    
    .contact-number {
        font-size: 0.8rem;
    }
}

/* Extra small screens - 480px and below */
@media (max-width: 480px) {
    /* Prevent horizontal scroll on very small screens */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .container {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .phone-frame {
        width: 240px;
        max-width: calc(100vw - 30px);
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero-section .lead {
        text-align: center;
        max-width: 300px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        max-width: 240px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        text-align: center;
        margin: 0.5rem auto;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .ramo-card {
        padding: 0.75rem 0.25rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .ramo-card h5 {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-card h4 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .contact-card,
    .horario-card {
        padding: 1.25rem 0.75rem;
        margin: 0 0.25rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 10px;
        right: 10px;
    }
    
    .scroll-top-btn {
        width: 35px;
        height: 35px;
        bottom: 70px;
        right: 13px;
        font-size: 1rem;
    }
    
    .mobile-drawer-content {
        width: 95%;
    }
    
    .modal-logo {
        width: 70px;
        height: 70px;
    }
}

/* Background Colors */
.bg-light {
    background-color: var(--secondary-color) !important;
}

/* Smooth Animations */
[data-aos] {
    pointer-events: auto;
}

