/* Elite Construtora - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff !important;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff !important;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #fff !important;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

strong {
    color: yellow !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fc2319;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fc2319;
}

.contact-info {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
}

.contact-info i {
    position: relative;
    transform: translateY(12%);
    font-size: 25px;
    margin-right: 10px;

Não mostrar
: translateY(12%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 300;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: #0871d5 !important; 
    color: #fff !important;
    border-color: #0871d5 !important;
    font-weight: 200;
}

.btn-primary:hover {
    background: #004e98 !important;
    border-color: #004e98 !important;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent !important;
    color: #666 !important;
    border-color: #666 !important;
}

.btn-secondary:hover {
    background: transparent !important;
    color: #666 !important;
    transform: translateY(-2px) !important;
}

.btn-outline {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    width: 138px;
}

.btn-outline:hover {
    background: #333 !important;
    color: white !important;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: url('../img/hero-background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    
}

.hero-lp {
    height: 100vh;
    /*background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../img/arbo-bg.jpg') center/cover;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    
}

.hero-content-lp {
    width: 800px;

}

.logo-lp {
    padding-bottom: 60px;
}

.hero-content h1 {
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: "Noto Sans", sans-serif;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase
}

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

/* Page Hero */
.page-hero {
    height: 35vh;
    min-height: 300px;
    background: url('../img/cityscape.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.contact-hero {
    background: url('../img/contact-hero.jpg') center/cover;
}

.hero-overlay h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
}

.barra-hero{
    background-color: #ef7d00;
    height: 200px;
    align-content: center;
}

.barra-hero2 {
    background-color: #fc2319;
    height: 110px;
    align-content: center;
}

/* Featured Project */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: #f8f9fa;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-info {
    background: #1a1a1a;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-label {
    color: #fc2319;
    font-weight: 500;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    color: #fff;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
}

.project-info h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.project-description {
    color: #ccc;
    margin-bottom: 2.7rem;
    line-height: 1.6;
}

/* Completed Works */
.completed-works {
    padding: 5rem 0;
    background: #fc2319;
}

.completed-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
    font-weight: 300;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-card {
    background: transparent;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 487px;
    display: flex;
    position: relative;
    max-width: 357.33px;
}

/*.project-card :hover {
   -webkit-transform: scale(1.1);
   transform: scale(1.1);
   transition: transform 0.3s ease;
}*/

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-card:hover img {
    filter: blur(5px);
    -webkit-transform: scale(1.1);
   transform: scale(1.1);
   transition: transform 0.3s ease;
}

.project-card-content {
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.project-card-content: hover {
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.project-location {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 200;
}

.project-card h3 {
    margin-top: 0.5rem;
    color: #fff;
    font-weight: 300;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 10%;
}

.section-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #fc2319 !important;
    font-size: 27px;
    font-weight: 400;
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
}

.stats h2 {
    margin-bottom: 3rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
}

.stats h2 span {
    color: #fc2319 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fc2319;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Intro */
.company-intro {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text {
   padding: 60px;
}

.intro-text h2 {
    color: #fc2319 !important;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fc2319 !important;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 350px;
    object-fit: cover;
    margin: 0 auto 1rem;
    
}

.team-member h3 {
    color: white;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: #5e5852;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fc2319 !important;
    text-transform: uppercase;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
    color: #fff;
}

/* Differentials Section */
.differentials-section {
    padding: 5rem 0;
    background: #fc2319 !important;
    color: white;
}

.differentials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #303030 !important;
    text-transform: uppercase;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.differential-item {
    text-align: center;
    padding: 0.8rem;
}

.differential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #303030;
    float: left;
}

.differential-item h3 {
    margin-bottom: 1rem;
    color: #303030 !important;
    padding-left: 65px;
    text-align: left;
}

.differential-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding-left: 65px;
    text-align: left;
    color: #303030 !important;
    line-height: normal;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background: #4a5568;
    color: white;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Contact Sections */
.contact-intro {
   
    background: #f8f9fa;
}

.contact-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
}

.contact-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.contact-banner-content h2 {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.contact-content {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section h2 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fc2319;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.error-message {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: url('../img/bg footer consorcio servopa.jpg') center/cover;
    text-align: center;
    color: white;
    height: 552px;
    align-content: center;
}

.btn-cta{
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    font-weight: 200;
}

.cta-content h2 {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-left {
    text-align: center;
}

.footer-left img {
    margin-bottom: 1rem;
    display: unset !important;
}

.footer-reg {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-column li {
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: #fc2319;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fc2319;
}

.footer-column .contact-info {
    color: #fc2319;
    font-weight: 500;
    margin-bottom: 1rem;
}

.address {
    margin-top: 1rem;
}

.address p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: ruby;
    gap: 1rem;
    text-align: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fc2319;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.client-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.client-btn {
    background: #333;
    color: white;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: center;
    transition: background-color 0.3s ease;
    line-height: normal;
}

.client-btn:hover {
    background: #fc2319;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

.diferenciais {
    width: 100%;
    background: #4aaab2;
    padding-top:2%;
    padding-bottom: 3%;
}

.diferenciais-icon {
    float: left;
}

.diferenciais-icon img {
    width: 35px;
}

.diferenciais-text {
    border-bottom: solid 1px #ef7d009e;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.diferenciais-text h4 {
    color: #fff !important;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .project-info {
        padding: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .client-buttons {
        grid-template-columns: 1fr;
    }

    .img-hero {
        margin-bottom: -125px !important;
    }
    .logo {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .img-hero {
        margin-bottom: -125px !important;
    }
    .logo {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .project-info h2 {
        font-size: 2rem;
    }
    .img-hero {
        margin-bottom: -125px !important;
    }
    .logo {
        margin: 0 auto;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.diferenciais {
    width: 100%;
    background: #4aaab2;
    padding-top:2%;
    padding-bottom: 3%;
}

.diferenciais-icon {
    float: left;
}

.diferenciais-icon img {
    width: 35px;
}

.diferenciais-text {
    border-bottom: solid 1px #ef7d009e;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.diferenciais-text h4 {
    color: #fff !important;
    font-weight: 300;
}

.status-content {
    margin-bottom: 70px; 
    display: flex;

}

.right-btns {
    right: 0px; 
    z-index:999999; 
    top: 50%; 
    position: fixed; 
    background-color: #000; 
    width: 50px; 
    height: 112px; 
    text-align: center; 
    padding: 10px
}






/*CARROSSEL

.carousel-container {
            max-width: 800px;
            width: 100%;
            position: relative;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .carousel-inner {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-slide .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
        }

        .slide-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .slide-description {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Botões de navegação */
        /* .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        /* Indicadores (dots) */
        /*.carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.3);
        }

        /* Contador */
        /*.carousel-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            z-index: 10;
        }

        /* Responsive */
        /*@media (max-width: 768px) {
            .carousel {
                height: 400px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }

            .slide-title {
                font-size: 1.4rem;
            }

            .slide-description {
                font-size: 0.9rem;
            }

            .carousel-slide .slide-content {
                padding: 30px 20px 20px;
            }
        }

        @media (max-width: 480px) {
            .carousel {
                height: 300px;
            }

            .carousel-container {
                margin: 10px;
            }

            .slide-title {
                font-size: 1.2rem;
            }

            .carousel-counter {
                top: 10px;
                right: 10px;
                padding: 6px 12px;
                font-size: 0.8rem;
            }
        }

        /* Auto-play pause button */
        /*.autoplay-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .autoplay-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* Loading effect */
        /*.carousel-slide.loading {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #ddd;
            border-top: 4px solid #333;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }*/