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

:root {
    --primary-color: #0f0f0f;
    --secondary-color: #d4af37;
    --accent-color: #ff8c42;
    --accent-light: #ffb84d;
    --text-light: #f4f4f4;
    --text-dark: #2a2a2a;
    --gray-light: #fafafa;
    --gray-dark: #444;
    --dark-bg: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

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

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.nav-brand {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */

.hero {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.65) 0%, rgba(42, 42, 42, 0.65) 50%, rgba(255, 140, 66, 0.4) 100%), url('../images/barbearia%20.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 200px 20px;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    color: var(--text-dark);
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    margin: 1rem auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    animation: fadeInUp 0.8s ease-out;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.stat:hover::before {
    opacity: 1;
}

.stat h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat p {
    color: #777;
    font-weight: 600;
    font-size: 1rem;
}

/* Serviços Section */
.servicos {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

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

.servico-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.servico-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.servico-card:hover::before {
    left: 100%;
}

.servico-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.servico-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.servico-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.servico-card p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.preco {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem !important;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.portfolio-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay p {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Depoimentos */
.depoimentos {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 50%, var(--accent-color) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.depoimentos .section-title {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

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

.depoimento-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.depoimento-card:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.depoimento-card:hover::before {
    transform: scaleX(1);
}

.stars {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.stars i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.depoimento-card:hover .stars i {
    transform: scale(1.2);
}

.depoimento-card p {
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.9;
    font-size: 1.05rem;
}

.depoimento-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Horário */
.horario {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.horario-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.horario-item {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.horario-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.horario-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
}

.horario-item:hover::before {
    top: 20%;
    right: 20%;
}

.horario-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.horario-item p {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Contato */
.contato {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.15);
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.info-item p {
    color: #777;
    line-height: 1.7;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #999;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 3rem 20px 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

.social-links a {
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    color: #999;
    position: relative;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.4s ease;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close,
.close-success {
    color: #999;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 0.8;
}

.close:hover,
.close-success:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
    font-size: 1.8rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-content input,
.modal-content select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.modal-content input::placeholder {
    color: #999;
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Sucesso Modal Styles */
.sucesso-content {
    text-align: center;
    clear: both;
}

.sucesso-content i {
    font-size: 4rem;
    color: #4caf50;
    margin: 1rem 0;
    display: block;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.sucesso-content h2 {
    color: #4caf50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.sucesso-content p {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
}

.sucesso-content p:first-of-type {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
}

.sucesso-mensagem {
    color: var(--secondary-color) !important;
    font-size: 1rem;
    margin: 1.5rem 0 !important;
    font-style: italic;
}

.sucesso-content .cta-button {
    margin-top: 1.5rem;
    width: auto;
    align-self: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active li {
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero {
        padding: 120px 20px;
        min-height: 80vh;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

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

    .servicos-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

    .section-title::after {
        width: 80px;
    }
}

/* Efeitos Especiais Adicionais */
.container {
    animation: fadeInSlow 1s ease-in-out;
}

@keyframes fadeInSlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll reveal effects */
.scrolled {
    animation: slideFromLeft 0.8s ease-out;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Link hover effects */
a {
    position: relative;
}

/* Button ripple effect */
.cta-button,
.servico-card,
.depoimento-card {
    position: relative;
    overflow: hidden;
}

/* Icons animation */
.servico-card i,
.info-item i,
.footer-section i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.servico-card:hover i {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0) scale(1.2);
    }
}

/* Text shadow effect */
.nav-brand,
.hero-title,
.section-title {
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

/* Box shadow enhancement */
.servico-card,
.depoimento-card,
.stat,
.portfolio-item {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.servico-card:hover,
.depoimento-card:hover,
.stat:hover {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

/* Form input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.9) 100%);
}

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

/* Pulse animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.cta-button {
    animation: slideInScale 0.6s ease-out;
}

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

/* Hover effect para elements */
.servico-card::after,
.depoimento-card::after,
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.servico-card:hover::after,
.depoimento-card:hover::after {
    left: 100%;
}

/* Badge and label styling */
.preco {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth page transitions */
@keyframes pageEnter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageEnter 0.5s ease-in-out;
}

/* Premium hover effects */
.stat:hover h3,
.servico-card:hover h3,
.depoimento-card:hover h4 {
    color: var(--accent-light);
    text-shadow: 0 2px 10px rgba(255, 180, 77, 0.3);
}

/* Elegant borders */
.servico-card,
.depoimento-card,
.info-item {
    border-left: 4px solid transparent;
    transition: border-left 0.3s ease;
}

.servico-card:hover {
    border-left: 4px solid var(--secondary-color);
}

.depoimento-card:hover {
    border-left: 4px solid var(--secondary-color);
}

.info-item:hover {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1200;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}
