:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #FFA500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background: rgb(0, 0, 0);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgb(0, 0, 0);
    transition: background 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a:focus {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.whatsapp-button a {
    background: linear-gradient(90deg, #25D366 60%, #128C7E 100%);
    color: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(37,211,102,0.15);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.3s, box-shadow 0.3s;
    border: none;
}

.whatsapp-button a:hover {
    background: linear-gradient(90deg, #128C7E 60%, #25D366 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/logo.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000000;
    height: 100vh;
    display: flex;
    text-align: center;
    color: var(--background-color);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.7) 90%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: url('assets/images/logo.png') center center no-repeat;
    background-size: contain;
    opacity: 0.13;
    pointer-events: none;
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--background-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-text {
    margin-bottom: 2.5rem;
    animation: fadeIn 1.5s ease;
}

.hero-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-features {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.hero-availability {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.hero-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-question {
        font-size: 1.2rem;
    }

    .hero-features,
    .hero-availability {
        font-size: 1.1rem;
    }

    .hero-cta {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero {
        background-size: 70vw;
        background-position: center 60px;
    }

    .hero-content::before {
        width: 180px;
        height: 180px;
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.about-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.services {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.services h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #FFD70022;
    min-height: 420px;
    transition: box-shadow 0.3s, border 0.3s, transform 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.service-item:hover {
    box-shadow: 0 8px 24px #FFD70044;
    border: 2px solid #FFD700;
    transform: translateY(-6px) scale(1.03);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-image img, .service-image i {
    width: 100%;
    max-width: 600px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    background: transparent;
    display: block;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content p, .service-content li {
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .service-item {
        padding: 1.2rem 0.5rem;
        margin-bottom: 2rem;
    }
    .service-image img, .service-image i {
        width: 70px;
        height: 70px;
    }
    .service-content h2 {
        font-size: 1.1rem;
    }
    .service-content p, .service-content li {
        font-size: 0.98rem;
    }
}

.about {
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.contact h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

footer {
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: var(--background-color);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.service-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.about-company {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.about-text ul {
    list-style: none;
    margin: 1rem 0;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.feature-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coverage-area {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    color: var(--background-color);
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.city {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-radius: 10px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    text-align: center;
}

.map-container {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-buttons .cta-button.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: left;
        padding: 1rem 0;
    }

    nav.active .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .whatsapp-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

.form-status {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-align: center;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    margin: 1rem auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button a {
    position: relative;
    overflow: hidden;
}

.whatsapp-button a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-button a:hover:after {
    width: 300px;
    height: 300px;
}

.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.review-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.stars {
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.stars i {
    margin-right: 2px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-card {
    animation: float 4s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) {
    animation-delay: 1s;
}

.service-card:nth-child(4) {
    animation-delay: 1.5s;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.instagram-feed {
    padding: 5rem 0;
    background-color: #ffffff;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.profile-text h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.profile-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.instagram-grid {
    margin: 0 -10px;
}

.insta-post {
    padding: 10px;
    position: relative;
}

.insta-link {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.insta-link:hover {
    transform: scale(0.98);
}

.insta-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    color: white;
    font-size: 2rem;
}

.insta-link:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-info {
        flex-direction: column;
    }

    .btn-instagram {
        width: 100%;
    }
}

.insta-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.insta-post:hover img {
    transform: scale(1.05);
}

.google-reviews {
    padding: 3rem 0 2rem 0;
}
.google-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.2rem;
}
.google-logo-rating {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.google-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #FFD700;
    object-fit: contain;
}
.google-rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.google-title {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
    color: #222;
}
.google-rating-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
}
.google-rating {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}
.google-stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.google-count {
    color: #666;
    font-size: 1rem;
    margin-left: 0.2rem;
}
.google-badges {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.2rem;
}
.google-badge.open {
    background: #e6f4ea;
    color: #137333;
    font-size: 0.95rem;
    padding: 0.18rem 0.7rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.google-site-link a {
    color: #4285F4;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.google-site-link a i {
    font-size: 1.1rem;
}

.google-reviews-list {
    margin-top: 1.5rem;
}
.google-review {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.1rem 1rem 0.7rem 1rem;
    background: #fff;
    min-height: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.2rem;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FFD700;
}
.review-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.1rem 0;
    color: #222;
}
.stars {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.1rem;
}
.review-time {
    font-size: 0.92rem;
    color: #888;
    margin-left: 0.1rem;
}
.google-review p {
    font-size: 1.02rem;
    color: #333;
    margin-bottom: 0.2rem;
}
.review-photos {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.2rem;
}
.review-photos img {
    width: 48px;
    height: 48px;
    border-radius: 7px;
    object-fit: cover;
    border: 1px solid #eee;
}
@media (max-width: 768px) {
    .google-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
    .google-logo-rating {
        gap: 0.7rem;
    }
    .google-site-link {
        margin-top: 0.5rem;
    }
    .google-reviews-list {
        margin-top: 1rem;
    }
    .google-review {
        padding: 1rem 0.7rem 0.7rem 0.7rem;
    }
}

.why-choose {
    background: #f8f9fa;
    padding: 4rem 2rem 2rem 2rem;
}
.why-choose .why-choose-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 2.5rem;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.why-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-family: 'Poppins', sans-serif;
}
.why-card p {
    font-size: 1.05rem;
    color: #444;
    margin: 0;
}
@media (max-width: 768px) {
    .why-choose {
        padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    }
    .why-choose .why-choose-title {
        font-size: 1.5rem;
    }
    .why-choose-grid {
        gap: 1rem;
    }
    .why-card {
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    }
}

.z7chaves-info-section {
    background: #fffbe6;
    border-top: 2px solid #FFD700;
    padding: 3rem 0 2rem 0;
    text-align: center;
}
.z7chaves-info-container {
    max-width: 700px;
    margin: 0 auto;
}
.z7chaves-info-title {
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}
.z7chaves-info-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.z7chaves-info-contact h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 700;
}
.z7chaves-info-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.z7chaves-info-contact li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.z7chaves-info-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
@media (max-width: 600px) {
    .z7chaves-info-section {
        padding: 2rem 0 1rem 0;
    }
    .z7chaves-info-title {
        font-size: 1.3rem;
    }
    .z7chaves-info-desc {
        font-size: 1rem;
    }
    .z7chaves-info-contact li {
        font-size: 0.98rem;
    }
}

.footer-heading {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.footer-contato {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-contato li {
    diplay: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.05rem;
}
.footer-contato i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 22px;
    text-align: center;
}
.footer-contato p {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-contato li {
        justify-content: center;
    }
}

.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 28px !important;
    right: 28px !important;
    background: #25d366 !important;
    color: #fff !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 2.5rem !important;
    box-shadow: 0 6px 24px 0 #25d36655, 0 1.5px 0 #fff;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
    cursor: pointer !important;
    border: 2.5px solid #fff !important;
    animation: whatsapp-pulse 2.2s infinite;
    text-decoration: none !important;
}
.whatsapp-float i {
    font-size: 2.7rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
}
.whatsapp-float:hover {
    background: #128c7e !important;
    color: #fff !important;
    box-shadow: 0 12px 32px 0 #25d36699, 0 2px 0 #fff;
    transform: translateY(-6px) scale(1.07);
    animation: none;
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 #25d36655, 0 1.5px 0 #fff; }
    70% { box-shadow: 0 0 0 12px #25d36622, 0 1.5px 0 #fff; }
    100% { box-shadow: 0 0 0 0 #25d36655, 0 1.5px 0 #fff; }
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.7rem !important;
        bottom: 16px !important;
        right: 16px !important;
    }
    .whatsapp-float i {
        font-size: 1.7rem !important;
    }
}