:root {
    --vinho: #582B33;
    --cinza: #7A7A7A;
    --branco: #FFFFFF;
    --azul: #000d81;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: var(--branco);
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    background-color: var(--vinho);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--branco) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--branco);
    padding: 3px;
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background-color: var(--branco);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--vinho);
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: var(--branco) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f0f0f0 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--branco);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border-color: var(--branco);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* WhatsApp Button in Navbar */
.navbar-whatsapp {
    background-color: #25D366;
    color: var(--branco) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 15px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.navbar-whatsapp:hover {
    background-color: #128C7E;
    color: var(--branco) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.navbar-whatsapp i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .navbar-whatsapp {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--vinho) 0%, #6d3741 100%);
    color: var(--branco);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-primary-custom {
    background-color: var(--branco);
    color: var(--vinho);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #f0f0f0;
    color: var(--vinho);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vinho);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.15);
}

.card-custom .card-body {
    padding: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vinho) 0%, #6d3741 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--branco);
    font-size: 1.8rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vinho);
    margin-bottom: 15px;
    text-align: center;
}

.card-text {
    color: var(--cinza);
    text-align: center;
    line-height: 1.6;
}

/* Info Cards (Home) */
.info-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid var(--vinho);
}

.info-card h3 {
    color: var(--vinho);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.info-card p {
    color: var(--cinza);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    color: var(--cinza);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    text-align: left;
}

.info-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--vinho);
}

/* Contact Section */
.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.contact-item-link:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(88, 43, 51, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--vinho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--vinho);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--cinza);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--vinho);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Form */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--vinho);
    box-shadow: 0 0 0 0.2rem rgba(88, 43, 51, 0.1);
}

.btn-submit {
    background-color: var(--vinho);
    color: var(--branco);
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6d3741;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 43, 51, 0.3);
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */

/* Footer */
footer {
    background-color: var(--vinho);
    color: var(--branco);
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-address-center {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-address-center i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.footer-address-center span {
    opacity: 0.9;
}

.footer-social a {
    color: var(--branco);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #f0f0f0;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-sidebar {
        display: none;
    }
}

/* Contact Sidebar - Mini Aba Lateral */
.contact-sidebar {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}

.sidebar-tab {
    background-color: var(--cinza);
    color: var(--branco);
    padding: 15px 30px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.sidebar-tab:hover {
    background-color: var(--cinza);
    padding-right: 50px;
}

.sidebar-content {
    position: absolute;
    right: 100%;
    bottom: 0;
    background-color: var(--branco);
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.15);
    padding: 25px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-sidebar:hover .sidebar-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.sidebar-content h3 {
    color: var(--vinho);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sidebar-contact-item:hover {
    background-color: #e9ecef;
    transform: translateX(-5px);
}

.sidebar-contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--vinho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar-contact-info {
    flex: 1;
}

.sidebar-contact-info strong {
    display: block;
    color: var(--vinho);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.sidebar-contact-info a,
.sidebar-contact-info span {
    color: var(--cinza);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
}

.sidebar-contact-info a:hover {
    color: var(--vinho);
}

.sidebar-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.sidebar-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: var(--branco);
}

.sidebar-whatsapp-btn i {
    font-size: 1.3rem;
}

.sidebar-close {
    display: none;
}

/* Team Page Styles */
.team-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--vinho) 0%, #6d3741 100%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vinho);
    margin-bottom: 5px;
    margin-top: 20px;
}

.team-specialty {
    color: var(--cinza);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-bio h5 {
    color: var(--vinho);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-bio h5 i {
    font-size: 0.9rem;
}

.team-bio ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.team-bio ul li {
    color: var(--cinza);
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-bio ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--vinho);
    font-size: 0.75rem;
}

.team-bio p {
    color: var(--cinza);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
/* Feature Cards (Estrutura Acolhedora) */
.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.15);
}

.feature-card .card-body {
    padding: 30px;
}

.feature-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vinho);
    margin: 20px 0 15px;
    text-align: center;
}

.feature-card-text {
    color: var(--cinza);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-card ul li {
    color: var(--cinza);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.9rem;
}

.feature-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--vinho);
}

/* Gallery (Nossa Galeria) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(88, 43, 51, 0.95), transparent);
    padding: 20px;
    color: var(--branco);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--branco);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--vinho);
    transform: rotate(90deg);
}

/* Benefits Section (Por que Escolher) */
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.benefits-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(88, 43, 51, 0.15);
}

.benefits-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--vinho);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(88, 43, 51, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vinho), #6d3741);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: var(--vinho);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.benefit-card p {
    color: var(--cinza);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Comfort Features (Comodidades) */
.comfort-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.comfort-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px auto;
    max-width: 900px;
}

.comfort-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.comfort-item:hover {
    transform: scale(1.05);
}

.comfort-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vinho);
    font-size: 2rem;
    flex-shrink: 0;
}

.comfort-item span {
    color: #4a4a4a;
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
}

.comfort-cta {
    margin-top: 50px;
}

.comfort-cta .btn {
    background-color: var(--vinho);
    color: var(--branco);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.comfort-cta .btn:hover {
    background-color: #6d3741;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(88, 43, 51, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .comfort-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-card,
    .gallery-item,
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .comfort-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .comfort-features {
        grid-template-columns: 1fr;
    }
}


.footer-address i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.footer-address span {
    opacity: 0.9;
}
/* Feedback Page Styles */
.feedback-carousel {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    padding: 0 60px;
}

.review-card {
    background-color: var(--branco);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(88, 43, 51, 0.1);
    margin: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vinho), #6d3741);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
}

.review-info h4 {
    color: var(--vinho);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-text {
    color: var(--cinza);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cinza);
}

.google-badge i {
    color: #4285F4;
}

/* Carrossel customizado */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--vinho);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #6d3741;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    margin-bottom: -30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--vinho);
}

/* Video Testimonials */
.testimonial-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    min-height: 500px;
}

.testimonial-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.15);
}

.testimonial-video iframe,
.testimonial-video video,
.testimonial-video blockquote {
    width: 100%;
    min-height: 500px;
    border: none;
    margin: 0;
}

.instagram-media {
    background: white;
    border: 0;
    border-radius: 15px;
    box-shadow: none;
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
}

.testimonial-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(88, 43, 51, 0.9), transparent);
    padding: 20px;
    color: var(--branco);
    pointer-events: none;
}

.testimonial-video-overlay h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Image Testimonials */
.testimonial-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(88, 43, 51, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-image:hover img {
    transform: scale(1.1);
}

.testimonial-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(88, 43, 51, 0.95), transparent);
    padding: 20px;
    color: var(--branco);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-image:hover .testimonial-caption {
    opacity: 1;
}

.testimonial-caption h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-caption p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* Google Rating Summary */
.google-rating-summary {
    background: linear-gradient(135deg, var(--vinho), #6d3741);
    color: var(--branco);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(88, 43, 51, 0.2);
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

.rating-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--branco);
    color: var(--vinho);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rating-link:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    color: var(--vinho);
}

/* Responsive adjustments para feedback */
@media (max-width: 992px) {
    .testimonial-video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feedback-carousel {
        padding: 0 20px;
    }
    
    .carousel-control-prev {
        left: -10px;
    }
    
    .carousel-control-next {
        right: -10px;
    }
    
    .testimonial-video-grid,
    .testimonial-image-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-video {
        min-height: 400px;
    }
}