:root {
    --bg-primary: #E7D8C9;
    --bg-card-1: #D5BDAF;
    --bg-card-2: #FFCAD4;
    --text-primary: #2C2C2C;
    --text-secondary: #CED4DA;
    --text-dark: #1a1a1a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.navbar {
    background-color: rgba(231, 216, 201, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(231, 216, 201, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    gap: 1rem;
}

.logo-container {
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navbar-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
}

.btn-navbar-cta {
    background-color: var(--bg-card-2);
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-navbar-cta:hover {
    background-color: #ffb3c1;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 202, 212, 0.4);
    color: #fff;
}

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

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

.hero-section {
    background-color: var(--bg-primary);
    padding: 0;
    position: relative;
}

#heroCarousel {
    height: 100vh;
    min-height: 600px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(255, 202, 212, 0.3) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 2rem;
}

.carousel-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.carousel-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

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

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--bg-card-2);
    width: 40px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 202, 212, 0.8);
    opacity: 1;
}

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

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background-color: var(--bg-card-2);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffb3c1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.4);
}

.about-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 202, 212, 0.05) 0%, rgba(213, 189, 175, 0.05) 100%);
    z-index: 0;
}

.about-image-wrapper-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-new {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper-new:hover .about-image-new {
    transform: scale(1.05);
}

.about-image-overlay-new {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.about-badge-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease;
}

.about-badge-new i {
    font-size: 2rem;
    color: var(--bg-card-2);
}

.about-badge-new span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.about-content-new {
    position: relative;
    z-index: 1;
}

.about-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.3);
}

.about-icon-box i {
    font-size: 2rem;
    color: #fff;
}

.about-subtitle-new {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-text-new {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: rgba(255, 202, 212, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background-color: rgba(255, 202, 212, 0.2);
    transform: translateX(5px);
}

.about-feature-item i {
    font-size: 1.2rem;
    color: var(--bg-card-2);
}

.about-feature-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.btn-about-cta {
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border: none;
    color: #fff;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-about-cta:hover {
    background: linear-gradient(135deg, #ffb3c1, #c5ad9f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.4);
    color: #fff;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--bg-card-2);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.3);
}

.stats-icon i {
    font-size: 2rem;
    color: #fff;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-card-2), var(--bg-card-1));
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text.highlight {
    color: var(--text-dark);
    font-weight: 500;
    padding: 1rem;
    background-color: rgba(255, 202, 212, 0.2);
    border-radius: 10px;
}

.btn-outline-primary {
    border: 2px solid var(--bg-card-2);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--bg-card-2);
    color: #fff;
    transform: translateY(-2px);
}

.services-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 1rem;
    font-weight: 300;
}

.service-card-new {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
}

.service-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-badge i {
    font-size: 1.8rem;
    color: #fff;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title-new {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-description-new {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--bg-card-2);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-price-new {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-primary);
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label-new {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.price-amount-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-style: italic;
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.btn-service-new {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border: none;
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-service-new:hover {
    background: linear-gradient(135deg, #ffb3c1, #c5ad9f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.4);
    color: #fff;
}

.featured-service {
    border: 3px solid var(--bg-card-2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.featured-badge i {
    font-size: 1rem;
}


.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 100%);
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--bg-card-2);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.3);
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: var(--bg-card-2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.btn-contact-whatsapp {
    background-color: #25D366;
    border: none;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-contact-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.contact-form-new {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-primary);
}

.form-header i {
    font-size: 3rem;
    color: var(--bg-card-2);
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
}

.form-label-new {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-new {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control-new:focus {
    border-color: var(--bg-card-2);
    box-shadow: 0 0 0 0.2rem rgba(255, 202, 212, 0.25);
    outline: none;
    background-color: #fff;
}

.btn-submit-new {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    border: none;
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-submit-new:hover {
    background: linear-gradient(135deg, #ffb3c1, #c5ad9f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.4);
    color: #fff;
}

.map-container-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 500px;
}

.map-header {
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-header i {
    font-size: 1.8rem;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.map-container-new iframe {
    height: calc(100% - 70px);
    min-height: 430px;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    color: #fff;
    padding: 4rem 0 0;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--bg-card-2);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--bg-card-2);
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--bg-card-2);
}

.footer-gallery {
    margin-top: 2rem;
}

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

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-1));
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 202, 212, 0.3);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: var(--bg-card-2);
    transform: translateY(-3px);
    color: #fff;
}

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

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

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    #heroCarousel {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-title {
        font-size: 2.2rem;
    }

    .carousel-subtitle {
        font-size: 1.1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

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

    .carousel-caption-custom {
        padding: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-image-container,
    .hero-image {
        height: 300px;
    }

    .about-image-new {
        height: 350px;
    }

    .about-subtitle-new {
        font-size: 1.6rem;
    }

    .stats-card {
        margin-bottom: 1rem;
    }

    .stats-icon {
        width: 60px;
        height: 60px;
    }

    .stats-icon i {
        font-size: 1.5rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .contact-card {
        margin-bottom: 1rem;
    }

    .contact-form-new,
    .map-container-new {
        margin-bottom: 1.5rem;
    }

    .map-container-new {
        min-height: 400px;
    }

    .hero-image-placeholder,
    .about-image-placeholder {
        height: 300px;
        font-size: 5rem;
    }

    .logo-container {
        width: 100px;
        height: 60px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }

    .btn-navbar-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .about-badge {
        padding: 1rem 1.5rem;
    }

    .about-badge i {
        font-size: 1.5rem;
    }

    .about-badge span {
        font-size: 0.95rem;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-thumb {
        height: 60px;
    }

    .service-card-new {
        margin-bottom: 1.5rem;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title-new {
        font-size: 1.4rem;
    }

    .service-badge {
        width: 50px;
        height: 50px;
    }

    .service-badge i {
        font-size: 1.5rem;
    }

    .featured-badge {
        top: 15px;
        left: 15px;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
