:root {
    --primary: #2a5b8c;
    --secondary: #d4af37;
    --light: #ffffff;
    --light-blue: #f5f9ff;
    --text: #333333;
    --gray: #e9ecef;
    --biggest-font-size: 3rem;
    --big-font-size: 2.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --white-color: #fff;
    --black-color: #000;
    --hue: 220;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 65px;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary), #1a3a5a);
}

.btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 60px;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 30px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 0;
    display: flex;
    justify-content: center;
}

.scrolled {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    top: 0;
    border-radius: 0;
    transition: background 0.7s ease-in-out;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-gradient-animation h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-gradient-animation p {
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--text);
    text-align: left;
}

/* Services & Testimonials */
.services,
.testimonials,
.contact {
    background-color: var(--light-blue);
}

.services-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.service-card,
.testimonial-card {
    background: var(--light);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary);
    background-color: var(--primary);
}

.service-content,
.testimonial-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.service-content li {
    margin-bottom: 8px;
    color: var(--text);
}

/* Testimonials */
.testimonial-card {
    position: relative;
    padding: 30px;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* About Section */
.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 10px;
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    display: block;
}

/* Contact Section */
/* Contact Section */
/* css/components/contact.css */

.contact {
    background:black;
    position: relative;
    background-color: var(--light-blue);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.258);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 91, 140, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(42, 91, 140, 0.12);
    border-color: rgba(42, 91, 140, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a7bc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-text h4 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-text small {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    margin-top: 4px;
}

.contact-text small:hover {
    opacity: 1;
    cursor: pointer;
    text-decoration: underline;
}

/* Formulário Atualizado */
.contact-form-container {
     background: rgba(255, 255, 255, 0.258);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 91, 140, 0.1);
    border: 1px solid rgba(42, 91, 140, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #3a7bc8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--light);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(42, 91, 140, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: white;
    background: none;
    padding: 0 8px;
}

.form-group label {
    color: #666;
    padding: 0 5px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group .date-label {
    pointer-events: all;
    cursor: pointer;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

/* Estilo para select */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232a5b8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(42, 91, 140, 0.05);
    border-radius: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    position: static !important;
    transform: none !important;
    color: var(--text) !important;
    font-size: 0.9rem !important;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    padding: 0 !important;
    background: transparent !important;
}

/* Botões */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3a7bc8 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 91, 140, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 91, 140, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Mensagens de erro */
.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    padding-left: 5px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error label {
    color: #e74c3c;
}

/* Mensagem de sucesso */
.form-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    display: none;
    align-items: center;
    gap: 15px;
    animation: slideInUp 0.5s ease-out;
}

.form-success i {
    font-size: 1.5rem;
}

.form-success p {
    margin: 0;
    flex: 1;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Responsividade */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0px;
    }
    
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 14px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px 0px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .form-checkbox {
        padding: 12px;
    }
}

/* Estilo para o número de WhatsApp clicável */
#whatsapp-number {
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

#whatsapp-number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#whatsapp-number:hover {
    color: #3a7bc8;
}

#whatsapp-number:hover::after {
    transform: scaleX(1);
}

/* Adicionar estes estilos no seu arquivo style.css global */
:root {
    --primary: #2a5b8c;
    --secondary: #f0b90b;
    --light: #f5f5f5;
    --text: #333;
    --white: #fff;
    --white-color: #fff;
}


/* CTA & Footer */
.cta-section,
footer {
    color: white;
    text-align: left;
}

.cta-section {
    background: linear-gradient(rgba(42, 91, 140, 0.9), rgba(42, 91, 140, 0.9)),
        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=2069') center/cover no-repeat;
    padding: 80px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content h2:after {
    background: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

footer {
    background: var(--primary);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links,
.portfolio-tags {
    display: flex;
    gap: 15px;
    justify-content: left;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: center;
}

.footer-links h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ANIMAÇÕES */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.05;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

.animated-entry {
    animation: fadeIn 1.5s ease-out forwards;
}

.slide-in {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.wave-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    animation: wave 15s infinite linear;
}

/* Transições e modo escuro */
body,
header,
.service-card,
.testimonial-card,
.portfolio-item,
.contact-form input,
.contact-form textarea,
.contact-form select,
.stat-box {
    transition: background-color 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .scrolled {
    background: rgba(18, 18, 18, 0.138) !important;
}

body.dark-mode .services,
body.dark-mode .testimonials,
body.dark-mode .contact {
    background-color: var(--light-blue) !important;
}

body.dark-mode .service-card,
body.dark-mode .testimonial-card {
    background: #1e1e1e !important;
    border: 1px solid #333 !important;
}

body.dark-mode .service-content h3,
body.dark-mode .service-content li,
body.dark-mode .testimonial-content,
body.dark-mode .stat-box,
body.dark-mode .about-text p,
body.dark-mode .footer-links a,
body.dark-mode .footer-about p {
    color: #e0e0e0 !important;
}

body.dark-mode .portfolio-item {
    background: #222;
    color: #fff;
}

body.dark-mode .portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

body.dark-mode,
body.dark-mode .search-box {
    background: #222;
}

body.dark-mode .search-input {
    color: #fff;
}

body.dark-mode .search-filter {
    background: #333;
    color: #fff;
}

body.dark-mode .search-filter.active {
    background: var(--secondary);
    color: #222;
}

body.dark-mode .portfolio-item {
    background: #222;
    color: #fff;
}

body.dark-mode .portfolio-overlay {
    background: rgba(0, 0, 0, 0.51);
    color: #fff;
}

.dark-mode-toggle {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.5s ease;
}

body.dark-mode .dark-mode-toggle {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
    color: var(--secondary);
}

.dark-mode-toggle:hover {
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* Componente de cards - CORREÇÕES APLICADAS */
.card__bg,
.card__blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.card__bg {
    object-fit: cover;
    object-position: center;
}

.card__blur {
    backdrop-filter: blur(24px);
}

.card__container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card__article {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    margin: 0 auto;
    max-width: 340px;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform .4s;
}

.card__shadow {
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0) 70%,
            hsl(0, 0%, 0%) 100%);
}

.card__data {
    color: var(--white-color);
    position: absolute;
    left: 1.5rem;
    bottom: 2rem;
    z-index: 2;
}

.card__name {
    font-size: var(--big-font-size);
    margin-bottom: .25rem;
}

.card__profession {
    display: block;
    font-size: var(--small-font-size);
}

.card__clip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(113, 28, 192, 0.7);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--black-color);
    z-index: 10;
    cursor: pointer;
    transition: transform .4s;
}

.card__article:hover .card__img {
    transform: scale(1.1);
}

.info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, .1);
    backdrop-filter: blur(12px);
    padding: 3rem 1.5rem 1.5rem;
    color: var(--white-color);
    clip-path: circle(8px at 90% 6.7%);
    transition: clip-path .5s ease-in-out;
    z-index: 5;
}

.info__name {
    font-size: var(--biggest-font-size);
    margin-bottom: .5rem;
}

.info__description {
    font-size: 18 px;
    margin-bottom: 1rem;
}

.info__social {
    position: absolute;
    left: 1.5rem;
    bottom: .5rem;
    display: flex;
    column-gap: .5rem;
}

.info__link {
    background-color: hsl(var(--hue), 90%, 50%);
    box-shadow: 0 0 12px hsl(var(--hue), 90%, 50%);
    width: 2rem;
    height: 2rem;
    border-radius: .75rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--black-color);
    transition: transform .4s;
    text-decoration: none;
    align-items: center;
}

.info__link:hover {
    transform: translateY(-.25rem);
}

.card__article:hover .card__clip {
    transform: rotate(-45deg);
}

.info:hover,
.card__clip:hover~.info {
    clip-path: circle(100%);
}

/* NOVAS ESTILIZAÇÕES PARA O CARROSSEL */
.card__prev,
.card__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 91, 140, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    opacity: 0.8;
}

.card__prev {
    left: 10px;
}

.card__next {
    right: 10px;
}

.alana {
    display: flex;
}

.card {
    position: relative;
}

p {
    font-size: 1.02em;
}

/* Estilos para a animação das palavras */
.palavra-animada {
    display: inline-block;
    position: relative;
}

.palavra-animada .lista {
    display: block;
    position: relative;
    height: 50px;
}

.palavra-animada .lista span {
    position: absolute;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    white-space: nowrap;
    color: #e92ae9;
}

/* Estilos para os botões */
.cssbuttons-io {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cssbuttons-io:hover {
    transform: translateY(-3px);
}

.cssbuttons-io:active {
    transform: translateY(0);
}

#home {
    background: url('../images/caixadeso\ 1.png') center/cover no-repeat;
}

.hero-gradient-animation {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body:not(.dark-mode) .hero-gradient-animation .hero-content p {
    color: var(--white-color);
}

/* Modifique as propriedades do header no modo dark */
body.dark-mode header {
    background: rgba(18, 18, 18, 0.8) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .nav-links a {
    color: var(--white-color) !important;
}

body.dark-mode .logo {
    color: var(--light) !important;
}

body.dark-mode .logo span {
    color: var(--secondary) !important;
}

body.dark-mode .nav-links a:hover {
    color: var(--secondary) !important;
}

body.dark-mode .scrolled {
    background: rgba(18, 18, 18, 0.95) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

body.dark-mode .menu-toggle {
    color: white;
}

.chamada {
    margin-top: 30px;
}

.cssbuttons-io {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.05em;
    border-radius: 0.8em;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: ghostwhite;
    overflow: hidden;
}

.cssbuttons-io span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 1.2em 0.8em 1.05em;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cssbuttons-io::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
    transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
    transform: scale(0.95);
}

.cssbuttons-io {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cssbuttons-io:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.cssbuttons-io:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(142, 45, 226, 0.3);
}

/* Ajuste das cores do input no modo light/dark */
.contact-form input,
.contact-form textarea,
.contact-form select {
    color: var(--text);
    background: var(--light);
}

/* Modo light */
body:not(.dark-mode) .contact-form input,
body:not(.dark-mode) .contact-form textarea,
body:not(.dark-mode) .contact-form select,
body:not(.dark-mode) label {
    color: var(--text);
}

body:not(.dark-mode) label {
    background-color: var(--light);
}

/* Modo dark */
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .contact-form select,
body.dark-mode label {
    color: var(--white-color);
}

body.dark-mode label {
    background-color: var(--dark);
}

/* Ajuste do foco dos inputs */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
}

/* Ajuste das labels flutuantes */
.contact-form .form-group {
    position: relative;
}

.contact-form label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    padding: 0 5px;
}

.contact-form input:focus ~ label,
.contact-form input:valid ~ label {
    top: 0;
    font-size: 0.8em;
    background-color: inherit;
}

/* ========== CORREÇÕES DE RESPONSIVIDADE ========== */

/* Header responsivo */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .navbar {
        justify-content: space-between;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--light);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .scrolled {
        padding: 10px 20px;
    }
    
    body.dark-mode .nav-links {
        background: #1e1e1e;
    }
}

/* Hero section responsiva */
@media (max-width: 992px) {
    .hero-gradient-animation h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-gradient-animation h1 {
        font-size: 2.8rem;
        text-align: left;
    }
    
    .hero-gradient-animation p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-gradient-animation {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero-gradient-animation h1 {
        font-size: 2.2rem;
    }
    
    .hero-gradient-animation p {
        font-size: 1rem;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
}

/* About section responsiva */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box .number {
        font-size: 2rem;
    }
}

/* Services & Testimonials responsivos */
@media (max-width: 768px) {
    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .testimonial-card {
        margin: 0 10px;
    }
    
    .service-icon {
        height: 150px;
        font-size: 3rem;
    }
}

/* Contact section responsiva */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form input {
        width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
}

/* Footer responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links,
    .portfolio-tags {
        justify-content: center;
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

/* Cards responsivos */
@media (max-width: 992px) {
    .card__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .card__container {
        grid-template-columns: 1fr;
    }
    
    .card__article {
        height: 400px;
        max-width: 100%;
    }
}

/* CTA section responsiva - CORRIGIDO */
@media (max-width: 800px) {
    .cta-content {
        text-align: left; /* alinha h1 e p à esquerda */
    }

    .cta-content h2 {
        font-size: 2.0rem;
        text-align: left;
    }

    .cta-content p {
        text-align: left;
        font-size: 1rem;
    }

    /* Botões lado a lado */
    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 2.0rem; /* mesmo tamanho que 769px */
        text-align: left;
    }

    .cta-content p {
        text-align: left;
        font-size: 0.95rem;
    }

    /* Botões lado a lado em telas pequenas também */
    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cta-buttons .btn {
        flex: 1 1 48%;
        min-width: 120px;
        padding: 0.8em 1.2em;
    }
}

/* Hero Section h1 padronizado */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-gradient-animation h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-gradient-animation h1 {
        font-size: 2.0rem;
        line-height: 1.1;
    }

    .hero-gradient-animation p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-gradient-animation h1 {
        font-size: 2.5rem; /* mesmo tamanho */
        line-height: 1.1;
    }

    .hero-gradient-animation p {
        font-size: 0.95rem;
    }
}

/* Garantir que imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Melhorar legibilidade em mobile */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero-gradient-animation p {
        line-height: 1.6;
    }


}

/* ===== ESTILOS MODERNOS PARA CARD__CLIP (INSPIRADO EM SHEIN) ===== */

/* Container do ícone - posicionamento absoluto */
.card__clip {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

/* Ícone dentro do container */
.card__clip i {
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    transform: scale(1);
}

/* Efeitos de hover - expansão e rotação sutil */
.card__clip:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(138, 43, 226, 0.3);
}

.card__clip:hover i {
    color: #8a2be2;
    transform: scale(1.1) rotate(90deg);
}

/* Efeito ativo/press */
.card__clip:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

/* Animação de entrada */
.card__article {
    position: relative;
}

.card__clip {
    animation: clipIconEntrance 0.6s ease-out 0.3s both;
}

@keyframes clipIconEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efeitos especiais para diferentes tipos de card */
.card-yellow .card__clip {
    border-color: rgba(255, 193, 7, 0.3);
}

.card-yellow .card__clip:hover {
    border-color: #ffc107;
}

.card-yellow .card__clip:hover i {
    color: #ffc107;
}

.card-green .card__clip {
    border-color: rgba(40, 167, 69, 0.3);
}

.card-green .card__clip:hover {
    border-color: #28a745;
}

.card-green .card__clip:hover i {
    color: #28a745;
}

.card-pink .card__clip {
    border-color: rgba(220, 53, 69, 0.3);
}

.card-pink .card__clip:hover {
    border-color: #dc3545;
}

.card-pink .card__clip:hover i {
    color: #dc3545;
}

/* Suporte ao modo escuro */
body.dark-mode .card__clip {
    background: rgba(30, 30, 46, 0.95);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

body.dark-mode .card__clip i {
    color: #e0e0e0;
}

body.dark-mode .card__clip:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

body.dark-mode .card__clip:hover i {
    color: #8a2be2;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .card__clip {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }
    
    .card__clip i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .card__clip {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
    
    .card__clip i {
        font-size: 1rem;
    }
}

/* Efeito de ripple ao clicar (opcional) */
.card__clip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.card__clip:active::before {
    width: 100%;
    height: 100%;
}

/* Estilos para as informações dos cards */
.info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 0 0 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    display: none;
}

.info.show {
    opacity: 1;
    transform: translateY(0);
}

.info__data {
    color: white;
}

.info__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.info__description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade para as informações */
@media (max-width: 768px) {
    .info {
        padding: 15px;
    }
    
    .info__name {
        font-size: 1.1rem;
    }
    
    .info__description {
        font-size: 0.85rem;
    }
}