:root {
    --primary-blue: #004E89;
    --dark-blue: #022B42;
    --sky: #6698FF;
    --light-blue: #E6F0F7;
    --white: #FFFFFF;
    --gray: #5A5A5A;
    --yellow: #F6BD08;
    --orange: #F1A277;
    --whatsapp: #25D366;
    --gradient-primary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
    --gradient-light: linear-gradient(135deg, #E6F0F7 0%, #F8FBFF 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    --shadow-light: 0 8px 32px rgba(0, 78, 137, 0.08);
    --shadow-medium: 0 12px 40px rgba(0, 78, 137, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 78, 137, 0.15);
}

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

html, body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    overflow-x: hidden;
    max-width: 100%;
}

.w-100 { 
    width: 100%;
}

.bg-1 {
    background: var(--sky) !important;
}

.bg-2 {
    background: var(--yellow) !important;
}

.bg-3 {
    background: var(--orange) !important;
}

.text-white {
    color: white !important;
}

img.w-100 {
    object-fit: cover;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    padding: 0.8rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 78, 137, 0.08);
    min-height: 90px;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    min-height: 80px;
}

.logo-container {
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.1);
    border: 2px solid rgba(0, 78, 137, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 25px;
    position: absolute;
    top: 10px;
    left: 5rem;
    z-index: 1001;
}

.navbar.scrolled .logo-container {
    height: 150px;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.15);
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-nav .menu-item {
    position: relative;
}

.navbar-nav .menu-item a {
    font-family: 'Poppins', sans-serif;
    color: var(--gray) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    padding: 0.8rem 0 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-decoration: none;
}

.navbar-nav .menu-item:hover a {
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.navbar-nav .menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.navbar-nav .menu-item:hover::after {
    width: 100%;
    left: 0;
}

.social-links a {
    color: var(--gray);
    font-size: 1.3rem;
    margin: 0 0.6rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 78, 137, 0.05);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Modern Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 78, 137, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

.mobile-menu-toggle:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: white;
}

.mobile-menu-toggle span:nth-child(1) {
    margin-bottom: 5px;
}

.mobile-menu-toggle span:nth-child(3) {
    margin-top: 5px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

.mobile-menu-toggle.active {
    background: var(--primary-blue);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 78, 137, 0.1);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.mobile-menu-logo {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-menu-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-menu-item {
    display: block;
    padding: 0.8rem 2rem;
    color: var(--dark-blue);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid transparent;
    position: relative;
}

.mobile-menu-item:hover {
    background: rgba(0, 78, 137, 0.05);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.mobile-menu-item i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 78, 137, 0.1);
    background: rgba(0, 78, 137, 0.02);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu-social a {
    width: 45px;
    height: 45px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.mobile-menu-social a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.mobile-menu-contact {
    text-align: center;
}

.mobile-menu-contact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.mobile-menu-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Hide default Bootstrap navbar elements on mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-collapse {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-light);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    background-attachment: fixed;
    background-image: url('https://www.hbreceptivo.com.br/wp-content/themes/hb-receptivo/assets/img/capa-home.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 78, 137, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 78, 137, 0.2);
}

.hero-title {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 2.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1.8rem;
}

.hero-title-sub {
    display: block;
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 90%;
}

.btn-modern {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-right: 1rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.25);
}

.btn-phone:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 78, 137, 0.4);
}

/* Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    margin-left: 3rem;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(0, 78, 137, 0.08);
}

.form-title {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    font-family: 'Roboto', sans-serif;
    border: 2px solid rgba(0, 78, 137, 0.1);
    border-radius: 15px;
    padding: 18px 20px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 78, 137, 0.15);
    outline: none;
    background: white;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--yellow) 0%, #e6a800 100%);
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(246, 189, 8, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(246, 189, 8, 0.4);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
}

.section-alt {
    background: var(--gradient-light);
}

.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-title.section-title-alt { 
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Services Section */
.service-card {
    background: var(--gradient-card);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 78, 137, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 1.5rem auto 1rem;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.service-card:hover .service-icon::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-content {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-description {
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
    flex: 1;
}

/* Gallery Section */
.gallery-carousel {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(0, 78, 137, 0.1);
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 78, 137, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.8) 0%, rgba(2, 43, 66, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.gallery-overlay h5 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-carousel .carousel-indicators {
    bottom: 15px;
    z-index: 3;
}

.gallery-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--yellow);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-indicators button.active {
    background-color: var(--yellow);
    transform: scale(1.2);
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(247, 189, 9, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-carousel .carousel-control-prev {
    left: 20px;
}

.gallery-carousel .carousel-control-next {
    right: 20px;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
    background: var(--yellow);
    transform: translateY(-50%) scale(1.1);
}

/* Image Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.3rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

#modalImageContainer {
    background: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImageContainer svg {
    max-width: 100%;
    max-height: 500px;
    border-radius: 0;
}

/* Benefits Section */
#benefits {
    background-color: var(--dark-blue);
    position: relative;
}

#benefits::before {
    content: '';
    background-attachment: fixed;
    background-image: url('https://www.hbreceptivo.com.br/wp-content/themes/hb-receptivo/assets/img/capa-home.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
}

.benefit-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 78, 137, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

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

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.benefit-text {
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-carousel {
    border-radius: 25px;
    overflow: visible;
    position: relative;
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 78, 137, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-quote-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(0, 78, 137, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 78, 137, 0.1);
}

.testimonial-author h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-family: 'Poppins', sans-serif;
    color: rgba(90, 90, 90, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonials-carousel .carousel-indicators {
    bottom: -50px;
    z-index: 3;
}

.testimonials-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 78, 137, 0.3);
    border: 2px solid var(--yellow);
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-indicators button.active {
    background-color: var(--yellow);
    transform: scale(1.3);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0.8;
}

.testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.testimonials-carousel .carousel-control-next {
    right: -25px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(247, 189, 9, 0.8);
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.accordion {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 78, 137, 0.1);
}

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

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    background: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004E89'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.7;
    padding: 1.5rem 2rem 2rem;
    font-size: 1rem;
}

/* Contact Section */
.contact-card {
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 78, 137, 0.08);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 78, 137, 0.05);
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.contact-info h5 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-text {
    color: var(--gray);
    font-weight: 500;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-image: url(../img/footer.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo a {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    padding: 22px;
}

.footer-logo-img {
    width: 90px;
}

.footer-brand {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--dark-blue);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    font-family: 'Roboto', sans-serif;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.3);
}

.footer-contact-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-contact-simple a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-contact-simple a:hover {
    color: white;
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-contact-simple span {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d7377 100%);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: var(--shadow-heavy);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: var(--shadow-heavy);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-card {
        margin-left: 0;
        margin-top: 4rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar, .navbar.scrolled {
        min-height: 70px;
        padding: 0;
    }

    .logo-container {
        height: 100px;
        left: 10px;
        padding: 17px;
        width: 100px;
    }

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

    .hero {
        background: var(--dark-blue);
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero::before {

        clip-path: none;
        opacity: 0.2;
        width: 100%;
    }
    
    .hero-badge {
        background: rgba(0, 78, 137, 0.5);
        color: var(--white);
    }

    .hero-title {
        background: var(--white);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2rem;
    }
    
    .hero-subtitle {
        color: var(--white);
        font-size: 1.1rem;
        margin: 0 auto 3rem;
    }
    
    .btn-modern {
        display: flex;
        margin: 0.5rem auto;
        text-align: center;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero .form-label {
        text-align: left;
    }
    
    .form-card {
        padding: 2.5rem;
        margin-left: 0;
    }

    .contact-card {
        padding: 1rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .gallery-carousel .carousel-control-next {
        right: 10px;
    }

    .modal-content img {
        object-fit: contain;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .form-card {
        padding: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .footer {
        background-position: bottom left;
        padding: 2rem 0 0.6rem;
    }

    .hero::before, #benefits::before {
        background-attachment: scroll !important;
    }
}