@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 500, 600, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow: hidden;
  }
  
  #background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
  }
  
  .spinner {
	position: relative;
	z-index: 2;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .spinner-logo {
	width: 60px;
	height: 60px;
	z-index: 3;
  }
  
  .spinner-ring {
	width: 100px;
	height: 100px;
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-top: 4px solid crimson;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 0;
	left: 0;
  }
  
  @keyframes spin {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }

  
  
body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #a3a3a3, #c8c8c8, #e0e0e0, #e57373, #7a7a7a, #1e1e1e);
    background-attachment: fixed;
    background-size: 200% 200%;
    background-repeat: no-repeat;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: crimson;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 55px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: 40px;
  height: auto;
}

.brand h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.brand h1 span {
  color: crimson;
}


/* Seção do Header */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* Fim da Seção do Header */

/* Seção do Hero */
#hero {
	background-image: url(./img/hero-bg.png);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1.5s;
}
#hero h1:nth-child(1) {
	animation-delay: 1.5s;
}
#hero h1:nth-child(2) {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 1.5s ease forwards;
	animation-delay: 1.5s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: crimson;
	animation: text_reveal_box 1.5s ease;
	animation-delay: 1.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 1.5s;
}
/* Fim da Seção do Hero */

/* Seção Sobre */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	font-size: 1.9rem;
	margin-bottom: 20px;
	text-align: justify;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}

#about .col-left .about-img {
    height: 100%;
    width: 100%;
    position: relative;
    border: 10px solid white;
    animation: fadeIn 1.5s ease-in-out, floatEffect 3s ease-in-out infinite;
}
#about .col-left .about-img::after {
    content: '';
    position: absolute;
    left: -33px;
    top: 19px;
    height: 98%;
    width: 98%;
    border: 7px solid crimson;
    z-index: -1;
    animation: fadeIn 1.5s ease-in-out, shadowPulse 3s ease-in-out infinite;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes floatEffect {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes shadowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.8;
    }
}
/* Fim da Seção Sobre */

/* Seção de Serviços */
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 70px 0;
}
#services .service-top p {
	font-size: 1.9rem;
	margin-bottom: 20px;
	text-align: justify;
	margin-left: 5%;
	margin-right: 5%;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 12px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#services .service-item p {
	color: white;
	text-align: left;
}

#services .service-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
  #services .service-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
  
  #services .service-item:hover::after {
	opacity: 0.7;
}
  
  #services .service-item:hover h2 {
	color: crimson;
}
  
  #services .service-item:hover p {
	color: #f0f0f0;
}
  
  #services .service-bottom .icon {
	transition: transform 0.3s ease;
}
  
  #services .service-item:hover .icon {
	transform: rotate(360deg);
}
/* Fim da Seção Serviços */

/* Seção de Pagamentos */
#projects .projects {
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

#projects .projects-header h1 {
    margin-bottom: 30px;
}

#projects .all-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#projects .project-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 78%;
    margin: 16px auto;
    overflow: hidden;
    border-radius: 10px;
}

#projects .project-info {
    padding: 18px;
    flex-basis: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
}

#projects .project-info h1 {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

#projects .project-info h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 8px;
}

#projects .project-info p {
    color: white;
}

#projects .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
	border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;

}

#projects .pricing-table thead {
    background-color: #3b4654;
}

#projects .pricing-table thead th {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    padding: 10px 15px;
    color: crimson;
    border-bottom: 2px solid #485563;
}

#projects .pricing-table tbody tr {
    background-color: #2f3947;
}

#projects .pricing-table tbody tr:hover {
    background-color: #394251;
}

#projects .pricing-table tbody td {
    font-size: 1.4rem;
    padding: 10px 15px;
    color: #e0e0e0;
    text-align: left;
    border-bottom: 1px solid #485563;
}

#projects .pricing-table tbody tr:last-child td {
    border-bottom: none;
}

#projects .project-img {
    flex-basis: 50%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

#projects .project-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: 0.7;
}

#projects .project-img img {
    transition: 0.3s ease transform;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Ajuste de enquadramento específico para imagem da GamersClub */
#projects .project-img img[src*="gc-bg"] {
    object-position: center 35%;
}

#projects .project-item:hover .project-img img {
    transform: scale(1.1);
}

.open-modal {
    display: inline-block;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
    font-size: 1.2rem;
    padding: 6px 20px;
    border: 2px solid crimson;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 10px auto 0;
    position: relative;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.open-modal:hover {
    background-color: crimson;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.open-modal:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.level-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajustes visuais para calculadora embutida */
.calculation-section {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculation-section .level-selection {
    margin-bottom: 14px;
}

.calculation-section h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.calculation-section p#resultGC,
.calculation-section p#resultCE {
    font-size: 2rem;
    color: white;
    margin-top: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

@media (max-width: 768px) {
    .open-modal {
        font-size: 1rem;
        padding: 5px 16px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 20px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
}

.modal-content {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
    width: auto;
    max-width: 700px;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: crimson;
    cursor: pointer;
    border: 2px solid crimson;
    border-radius: 50%;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    z-index: 1001;
}

.modal .close:hover {
    background-color: crimson;
    color: white;
    transform: scale(1.1);
}

.modal-content h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: white;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: crimson;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.modal-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
}

.modal-content label {
    font-size: 1.4rem;
    color: #e0e0e0;
    display: block;
    margin: 15px 0 10px;
}

.modal-content p {
    font-size: 1.6rem;
    margin-top: 25px;
    color: #e0e0e0;
    line-height: 1.6;	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.modal-content p#resultGC, 
.modal-content p#resultCE {
    font-size: 3rem;
    color: white;
    margin-top: 30px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
}

.modal-content input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1.2rem;
    color: #29323c;
    border: 1px solid #485563;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
    outline: none;
    transition: border 0.3s ease;
}

.modal-content input:focus {
    border-color: crimson;
}

.modal-content button {
    background-color: crimson;
    color: white;
    padding: 12px 25px;
    font-size: 1.4rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.modal-content button:hover {
    background-color: #ff6666;
    transform: scale(1.05);
}

.levels {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    justify-content: center;
    margin: 14px 0;
}

.levels img {
    width: 42px;
    height: 42px;
    cursor: pointer;
    border: 1px solid #333;
    border-radius: 5px;
    transition: transform 0.5s ease, background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.levels img:hover {
    border-color: crimson;
    background-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
}

.levels img.selected {
    border-color: crimson;
    box-shadow: 0 0 15px crimson;
    transform: scale(1.1) rotate(0deg);
    background-color: rgba(220, 20, 60, 0.7);
    transition: transform 0.2s ease, background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.place-order-btn {
    display: block;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
    font-size: 1.1rem;
    padding: 8px 18px;
    border: 2px solid crimson;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin: 16px auto 0;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: center;
}

.place-order-btn:hover {
    background-color: crimson;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.place-order-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .modal .close {
        position: fixed;
        top: 10px;
        right: 10px;
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }

    .modal-content {
        max-width: 90%;
        padding: 20px;
    }

    .modal-content h2, .modal-content h3, .modal-content h4 {
        font-size: 1.8rem;
    }

    .levels {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    .levels img {
        width: 40px;
        height: 40px;
    }

    .modal-content button {
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    .modal-content p#resultGC, 
    .modal-content p#resultCE {
        font-size: 2.5rem;
    }
}

/* Fim da Seção de Pagamentos */

/* Seção de Depoimentos */
#testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#testimonials .testimonial-title {
    font-size: 6rem;
    font-weight: 30;
    text-align: center;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    position: absolute;
    transform: translate(-50%, -50%);
    white-space: nowrap;
	font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
    #testimonials .testimonial-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    #testimonials .testimonial-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    #testimonials .testimonial-title {
        font-size: 2.5rem;
    }
}

#testimonials .testimonial-title span {
    color: crimson;
    font-weight: 100;
}

#testimonials .testimonial-container {
    display: flex;
    gap: 10px;
    animation: scrollHorizontal 170s linear infinite;
    padding: 40px;
}

#testimonials .testimonial-container > *:nth-last-child(1) {
    margin-right: 1200px;
}

#testimonials:hover .testimonial-container {
    animation-play-state: paused;
}

#testimonials blockquote {
    display: inline-block;
    flex: 0 0 auto;
    width: 350px;
    background: linear-gradient(60deg, #29323c 0%, #485563 100%);
    border-radius: 4px;
    padding: 10px 10px;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials blockquote:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.5);
}

#testimonials blockquote p {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 10px;
	color: aliceblue;
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

#testimonials blockquote cite {
    font-size: 2rem;
    font-weight: 700;
    color:crimson;
	text-shadow: 1px 1px 2px rgb(0, 0, 0);
    display: block;
    text-align: right;
    text-transform: uppercase;
}

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

#testimonials::-webkit-scrollbar {
    height: 8px;
}

#testimonials::-webkit-scrollbar-thumb {
    background: #485563;
    border-radius: 5px;
}

#testimonials::-webkit-scrollbar-track {
    background: #29323c;
}
#testimonials h3 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: crimson;
    letter-spacing: 0.1rem;
	text-transform: uppercase;
	letter-spacing: 0.6rem;
}

#testimonials h4 {
	font-size: 1.9rem;
	margin-bottom: 20px;
	text-align: justify;
	margin-left: 5%;
	margin-right: 5%;
	font-weight: 100;
}
/*Fim da Seção de Depoimentos*/

/* Seção Contatos */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}
#contact .contact-items {
	width: 100%;
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
/* Fim da Seção de Contatos */

/* Rodapé */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}
.footer-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
  
.footer-button {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	color: #ffffff;
	text-decoration: none;
	padding: 10px 20px;
	margin: 0 10px;
	background-color: transparent;
	border: 2px solid #ffffff;
	border-radius: 5px;
	letter-spacing: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
  
.footer-button:hover {
	background-color: #ffffff;
	color: #333333;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.discord-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #5865f2;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-button img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.discord-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Fim do Rodapé */

/* Animações */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* Fim das Animações */

/* Ajuste para telas menores */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	#hero h1 {
		font-size: 7rem;
	}

	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}

	#projects .project-item {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
		column-gap: 0;
		grid-auto-flow: column;
	}
	#projects .project-item:nth-child(even) {
		direction: ltr;
	}
	#projects .project-item .project-info { grid-column: 1; grid-row: 1; align-self: stretch; }
	#projects .project-item .project-img { grid-column: 2; grid-row: 1; align-self: stretch; }
	#projects .project-item:nth-child(even) .project-info { grid-column: 2; grid-row: 1; }
	#projects .project-item:nth-child(even) .project-img { grid-column: 1; grid-row: 1; }

	/* GamersClub: manter imagem à direita no segundo card */
	#projects .all-projects .project-item:nth-child(2) .project-info { grid-column: 2; }
	#projects .all-projects .project-item:nth-child(2) .project-img { grid-column: 1; }
	#projects .project-item {
		height: auto;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: auto;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}

	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}

	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
}
/* Fim do Ajuste para telas menores*/

/* Ajustes para Desktop */
@media only screen and (min-width: 1200px) {
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* Fim do Ajuste para Desktop */

/* Estilos específicos para páginas PHP - Melhor legibilidade */
.php-page {
	padding-top: 8vh;
	min-height: 100vh;
}

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

/* Container em telas maiores */
@media (min-width: 1200px) {
	.php-page .container {
		max-width: 1400px;
		padding: 50px 30px;
	}
}

@media (min-width: 1400px) {
	.php-page .container {
		max-width: 1600px;
		padding: 60px 40px;
	}
}

/* Garantir centralização do container da conta */
.php-page .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Formulários PHP */
.php-form {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 40px;
	margin: 40px auto;
	width: 500px;
	max-width: 500px;
	min-width: 500px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Formulários em telas maiores */
@media (min-width: 1200px) {
	.php-form {
		width: 500px;
		max-width: 500px;
		min-width: 500px;
		padding: 40px;
	}
}

@media (min-width: 1400px) {
	.php-form {
		width: 500px;
		max-width: 500px;
		min-width: 500px;
		padding: 40px;
	}
}

.php-form h2 {
	color: #333;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	font-weight: 300;
}

.php-form h2 span {
	color: crimson;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	color: #333;
	margin-bottom: 10px;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.form-group input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 1.6rem;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: crimson;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.form-group input::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

/* Botões PHP */
.php-btn {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(45deg, crimson, #ff4757);
	color: white;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
	width: 100%;
	text-align: center;
}

.php-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
	background: linear-gradient(45deg, #ff4757, crimson);
}

/* Tabelas PHP */
.php-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 15px;
	overflow: hidden;
	margin: 20px 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.php-table th {
	background: rgba(220, 20, 60, 0.1);
	padding: 20px 15px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
	font-size: 1.4rem;
}

.php-table td {
	padding: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: #333;
	font-size: 1.4rem;
}

.php-table tr:hover {
	background: rgba(220, 20, 60, 0.05);
}

.php-table tr:last-child td {
	border-bottom: none;
}

/* Cards PHP */
.php-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 30px;
	margin: 20px 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Cards em telas maiores */
@media (min-width: 1200px) {
	.php-card {
		padding: 40px;
	}
}

@media (min-width: 1400px) {
	.php-card {
		padding: 50px;
	}
}

.php-card h3 {
	color: #333;
	font-size: 2rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.php-card h3 span {
	color: crimson;
}

/* Mensagens PHP */
.php-message {
	padding: 15px 20px;
	border-radius: 10px;
	margin: 20px 0;
	text-align: center;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	font-weight: 400;
}

.php-message.error {
	background: rgba(220, 20, 60, 0.1);
	border: 2px solid crimson;
	color: #333;
}

.php-message.success {
	background: rgba(0, 255, 0, 0.1);
	border: 2px solid #00aa00;
	color: #333;
}

/* Links PHP */
.php-link {
	color: crimson;
	text-decoration: none;
	font-weight: 400;
	transition: all 0.3s ease;
}

.php-link:hover {
	color: #ff4757;
	text-decoration: underline;
}


/* Layout da conta */
.account-content {
	max-width: 1000px;
	margin: 0 auto;
}

/* Garantir que o header fique centralizado */
.account-header {
	text-align: center;
	margin-bottom: 40px;
	width: 100%;
}

.account-header .section-title {
	margin-bottom: 30px;
}

/* Header da conta em telas maiores */
@media (min-width: 1200px) {
	.account-header {
		margin-bottom: 35px;
	}
	
	.account-header .section-title {
		margin-bottom: 25px;
	}
}

@media (min-width: 1400px) {
	.account-header {
		margin-bottom: 40px;
	}
	
	.account-header .section-title {
		margin-bottom: 30px;
	}
}

/* Formulário de perfil em telas maiores */
@media (min-width: 1200px) {
	.form-group {
		margin-bottom: 25px;
	}
	
	.form-group label {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	
	.form-group input {
		font-size: 1.5rem;
		padding: 15px 18px;
	}
}

@media (min-width: 1400px) {
	.form-group {
		margin-bottom: 28px;
	}
	
	.form-group label {
		font-size: 1.6rem;
		margin-bottom: 12px;
	}
	
	.form-group input {
		font-size: 1.6rem;
		padding: 16px 20px;
	}
}



.orders-container {
	max-height: 500px;
	overflow-y: auto;
}

/* Tabela de pedidos em telas maiores */
@media (min-width: 1200px) {
	.orders-container {
		max-height: 550px;
	}
	
	.php-table {
		font-size: 1.3rem;
	}
	
	.php-table th,
	.php-table td {
		padding: 12px 10px;
	}
}

@media (min-width: 1400px) {
	.orders-container {
		max-height: 600px;
	}
	
	.php-table {
		font-size: 1.4rem;
	}
	
	.php-table th,
	.php-table td {
		padding: 14px 12px;
	}
}

/* Responsividade para páginas PHP */
@media (max-width: 768px) {
	.php-page .container {
		padding: 20px 10px;
	}
	
	.php-form {
		padding: 20px;
		margin: 20px 10px;
		border-radius: 10px;
		width: 450px;
		max-width: 450px;
		min-width: 450px;
	}
	
	.php-form h2 {
		font-size: 2rem;
	}
	
	.form-group input {
		font-size: 1.4rem;
		padding: 12px 15px;
		border-radius: 6px;
	}
	
	.form-group label {
		font-size: 1.4rem;
	}
	
	.php-btn {
		font-size: 1.4rem;
		padding: 12px 20px;
		border-radius: 6px;
	}
	
	.php-table {
		font-size: 1.2rem;
	}
	
	.php-table th,
	.php-table td {
		padding: 10px 8px;
	}
	
	.php-card {
		padding: 20px;
		border-radius: 10px;
	}
	
	.php-card h3 {
		font-size: 1.6rem;
	}
	
	/* Layout responsivo para account */
	.account-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.account-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.stat-card.info {
		grid-column: 1;
	}
	
	.stat-card {
		padding: 20px 15px;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.stat-label {
		font-size: 1.1rem;
	}
	
	.stat-icon {
		font-size: 1.8rem;
	}
	
	.orders-container {
		max-height: 300px;
	}
}

/* Estilos específicos para checkout */
.order-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

.detail-value {
    color: #333;
    font-weight: bold;
}

.detail-value.price {
    color: #dc143c;
    font-size: 1.2em;
}

.detail-value.status-pending {
    color: #ff9800;
}

.detail-value.status-paid {
    color: #4caf50;
}

.detail-value.status-processing {
    color: #2196f3;
}

.detail-value.status-done {
    color: #4caf50;
}

.detail-value.status-cancelled {
    color: #f44336;
}

.divider {
    margin: 20px 0;
    border: none;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.payment-section {
    text-align: center;
    margin: 20px 0;
}

.payment-info {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.action-buttons {
    text-align: center;
    margin-top: 20px;
}

.action-buttons .php-btn {
    margin: 0 10px;
}

.php-btn.secondary {
    background: linear-gradient(135deg, #666, #555);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.php-btn.secondary:hover {
    background: linear-gradient(135deg, #555, #444);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsividade para checkout */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .action-buttons .php-btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}

/* Media queries adicionais para melhor responsividade */

/* Tablets */
@media (max-width: 1024px) {
	.php-page .container {
		padding: 30px 15px;
	}
	
	.php-form {
		max-width: 550px;
		padding: 35px;
	}
	
	.account-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

/* Mobile pequeno */
@media (max-width: 480px) {
	.php-page .container {
		padding: 15px 5px;
	}
	
	.php-form {
		padding: 20px;
		margin: 15px 5px;
		border-radius: 8px;
		width: 400px;
		max-width: 400px;
		min-width: 400px;
	}
	
	.php-form h2 {
		font-size: 1.8rem;
	}
	
	.form-group input {
		font-size: 1.3rem;
		padding: 10px 12px;
		border-radius: 6px;
	}
	
	.form-group label {
		font-size: 1.3rem;
	}
	
	.php-btn {
		font-size: 1.3rem;
		padding: 10px 15px;
		border-radius: 6px;
	}
	
	.php-card {
		padding: 15px;
		border-radius: 8px;
	}
	
	.php-card h3 {
		font-size: 1.4rem;
	}
	
	.form-link-primary {
		font-size: 1.4rem;
	}
	
	.form-link-secondary {
		font-size: 1.2rem;
	}
	
	.account-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.account-actions .php-btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Classes para remover CSS inline das páginas PHP */
.nav-link-active {
    color: #dc143c !important;
    font-weight: bold !important;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-link-primary {
    font-size: 1.6rem;
    font-weight: bold;
    color: #dc143c;
    text-decoration: underline;
}

.form-link-secondary {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
}

.account-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.account-actions .php-btn {
    width: auto;
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.4rem;
}

.php-card-spaced {
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.empty-state h2 {
    color: #333;
    margin-bottom: 20px;
}

.empty-state .php-btn {
    width: auto;
    display: inline-block;
}

/* Sistema de Chat */
.chat-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(248, 249, 250, 0.8);
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.message.user {
    align-items: flex-end;
}

.message.admin {
    align-items: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
}

.message.user .message-content {
    background: linear-gradient(45deg, crimson, #ff4757);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.admin .message-content {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 4px;
}

.message-content.unread {
    border-left: 4px solid crimson;
    background: rgba(220, 20, 60, 0.05) !important;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.message.user .message-header {
    color: rgba(255, 255, 255, 0.8);
}

.message.admin .message-header {
    color: #666;
}

.sender {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time {
    font-size: 0.7rem;
}

.message-text {
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.chat-input-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    resize: none;
    min-height: 20px;
    max-height: 100px;
    transition: all 0.3s ease;
}

.chat-input-container input:focus {
    outline: none;
    border-color: crimson;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.2);
}

.chat-input-container .php-btn {
    width: auto;
    padding: 12px 20px;
    font-size: 1.4rem;
    white-space: nowrap;
}

.chat-status {
    margin-top: 10px;
    text-align: center;
}

.unread-badge {
    background: crimson;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Chat do Admin */
.admin-chat-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    height: 600px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.conversations-list {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    overflow-y: auto;
    background: rgba(248, 249, 250, 0.8);
}

.conversation-item {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.conversation-item:hover {
    background: rgba(220, 20, 60, 0.05);
    border-color: rgba(220, 20, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.conversation-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
}

.conversation-email {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 1.2rem;
}

.conversation-stats {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #888;
}

.message-count {
    font-weight: 500;
}

.last-message {
    font-size: 0.9rem;
}

.no-conversations {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.chat-window {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(45deg, crimson, #ff4757);
    color: white;
    border-radius: 8px 8px 0 0;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

#adminChatMessages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: rgba(248, 249, 250, 0.8);
}

#adminChatMessages .message {
    margin-bottom: 15px;
}

#adminChatMessages .message-content {
    max-width: 80%;
}

#adminChatMessages .message.admin .message-content {
    background: linear-gradient(45deg, crimson, #ff4757);
    color: white;
    margin-left: auto;
}

#adminChatMessages .message.user .message-content {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: auto;
}

#adminChatMessages .chat-input-container {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
}

/* Responsividade do Chat */
@media (max-width: 768px) {
    .chat-messages {
        height: 300px;
        padding: 10px;
    }
    
    .message-content {
        max-width: 85%;
        padding: 10px 12px;
    }
    
    .chat-input-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .chat-input-container .php-btn {
        width: 100%;
    }
    
    /* Chat do Admin - Responsivo */
    .admin-chat-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
        padding: 15px;
    }
    
    .conversations-list {
        height: 200px;
    }
    
    .chat-window {
        height: 400px;
    }
    
    .conversation-item {
        padding: 10px;
    }
    
    .conversation-header h4 {
        font-size: 1.2rem;
    }
    
    .conversation-email {
        font-size: 1rem;
    }
    
    .conversation-stats {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .chat-messages {
        height: 250px;
        padding: 8px;
    }
    
    .message-content {
        max-width: 90%;
        padding: 8px 10px;
    }
    
    .message-header {
        font-size: 0.7rem;
    }
    
    .message-text {
        font-size: 1.3rem;
    }
}

/* Dashboard dos Pedidos */
.orders-dashboard {
    margin-bottom: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.dashboard-card {
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-card.pending {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 193, 7, 0.3);
}

.dashboard-card.paid {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.2), rgba(23, 162, 184, 0.1));
    border-color: rgba(23, 162, 184, 0.3);
}

.dashboard-card.progress {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.2), rgba(253, 126, 20, 0.1));
    border-color: rgba(253, 126, 20, 0.3);
}

.dashboard-card.completed {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    border-color: rgba(40, 167, 69, 0.3);
}

.dashboard-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dashboard-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.dashboard-label {
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financial-summary {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}

.summary-value {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
}

/* Dashboard responsivo */
@media (min-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
    
    .dashboard-card {
        padding: 25px 20px;
    }
    
    .dashboard-icon {
        font-size: 2.5rem;
    }
    
    .dashboard-number {
        font-size: 2.2rem;
    }
    
    .dashboard-label {
        font-size: 1.3rem;
    }
    
    .summary-label,
    .summary-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .dashboard-card {
        padding: 15px 10px;
    }
    
    .dashboard-icon {
        font-size: 1.8rem;
    }
    
    .dashboard-number {
        font-size: 1.8rem;
    }
    
    .dashboard-label {
        font-size: 1.1rem;
    }
    
    .summary-label,
    .summary-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dashboard-card {
        padding: 12px 8px;
    }
    
    .dashboard-icon {
        font-size: 1.6rem;
    }
    
    .dashboard-number {
        font-size: 1.6rem;
    }
    
    .dashboard-label {
        font-size: 1rem;
    }
    
    .summary-label,
    .summary-value {
        font-size: 1.2rem;
    }
}

/* Estilos para páginas de Termos e Política */
.terms-content {
    max-width: 100%;
    line-height: 1.8;
    font-size: 1.3rem;
}

.terms-content section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.terms-content section:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: crimson;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.terms-content h2 {
    color: crimson;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid crimson;
    padding-bottom: 0.5rem;
}

.terms-content p {
    margin-bottom: 1.2rem;
    color: #333;
    font-size: 1.3rem;
    text-align: justify;
    text-indent: 1.5rem;
}

.terms-content p:first-of-type {
    text-indent: 0;
    font-weight: 500;
}

.terms-content ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
    list-style-type: none;
}

.terms-content li {
    margin-bottom: 0.8rem;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.terms-content li::before {
    content: "▶";
    color: crimson;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.terms-content strong {
    color: crimson;
    font-weight: 700;
}

.terms-content a {
    color: crimson;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-content a:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsividade para páginas de termos */
@media (max-width: 768px) {
    .terms-content {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .terms-content section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .terms-content p {
        font-size: 1.2rem;
        text-indent: 1rem;
    }
    
    .terms-content ul {
        padding-left: 2rem;
    }
    
    .terms-content li {
        padding-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        font-size: 1.1rem;
    }
    
    .terms-content section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-content h2 {
        font-size: 1.4rem;
    }
    
    .terms-content p {
        font-size: 1.1rem;
        text-indent: 0.8rem;
    }
}

/* ===== CHECKOUT STYLES ===== */
.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

/* Estilos para pagamento manual */
.manual-payment-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.notice-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.notice-content h4 {
  color: #856404;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.notice-content p {
  color: #856404;
  font-size: 1.4rem;
  line-height: 2.5rem;
  margin: 0 0 16px 0;
}

.notice-content p:last-of-type {
  margin-bottom: 0;
}

.notice-details {
  margin-top: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #856404;
  font-size: 1.4rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.order-summary {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.order-summary h4 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-value {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.6rem;
}

.summary-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.summary-status.pending {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
}

.summary-status.confirmed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #28a745;
}

.checkout-header {
  text-align: center;
  margin-bottom: 3rem;
}

.checkout-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.checkout-header .order-id {
  color: #dc143c;
  font-weight: 700;
}

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

.order-summary-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.order-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.1);
  transition: all 0.3s ease;
}

.detail-row:hover {
  background: rgba(220, 20, 60, 0.05);
  border-color: rgba(220, 20, 60, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.1);
}

/* ===== LEVEL DISPLAY STYLES ===== */
.level-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(248, 249, 250, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  margin: 1.5rem 0;
  backdrop-filter: blur(15px);
}

.level-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.level-image {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 15px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.level-image:hover {
  transform: scale(1.05);
  border-color: rgba(220, 20, 60, 0.6);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.level-label {
  color: #555;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05rem;
}

.level-value {
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
}

.level-arrow {
  color: #dc143c;
  font-size: 2.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-arrow::before {
  content: "→";
}

.service-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, #dc143c, #ff4757);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.detail-label {
  font-weight: 500;
  color: #555;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
}

.detail-value {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
}

.detail-value.price {
  font-size: 1.8rem;
  color: #dc143c;
  font-weight: 700;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background: linear-gradient(45deg, #ffc107, #ffeb3b);
  color: #333;
}

.status-paid {
  background: linear-gradient(45deg, #17a2b8, #20c997);
  color: white;
}

.status-processing {
  background: linear-gradient(45deg, #fd7e14, #ff8c00);
  color: white;
}

.status-done {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
}

.status-cancelled {
  background: linear-gradient(45deg, #dc3545, #e74c3c);
  color: white;
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc143c, transparent);
  margin: 2rem 0;
}

.payment-section {
  text-align: center;
  padding: 2.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.payment-info {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.php-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.php-btn {
  padding: 1.2rem 2.5rem;
  border: 2px solid #dc143c;
  background: transparent;
  color: #dc143c;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.2rem;
  min-width: 180px;
  text-align: center;
  letter-spacing: 0.05rem;
}

.php-btn:hover {
  background: #dc143c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.php-btn.secondary {
  border-color: #6c757d;
  color: #6c757d;
}

.php-btn.secondary:hover {
  background: #6c757d;
  color: white;
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.php-message {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-weight: 600;
  text-align: center;
}

.php-message.success {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: 1px solid #28a745;
}

/* ===== CHECKOUT RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .checkout-container {
    padding: 1rem 0.5rem;
  }

  .checkout-header h1 {
    font-size: 2.2rem;
  }
  
  /* Responsividade para pagamento manual */
  .manual-payment-notice {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .notice-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .notice-content h4 {
    font-size: 1.6rem;
  }
  
  .notice-content p {
    font-size: 1.2rem;
  }
  
  .detail-item {
    justify-content: center;
  }
  
  .order-summary {
    padding: 16px;
  }
  
  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .order-summary-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }

  .detail-label {
    font-size: 1.1rem;
  }

  .detail-value {
    font-size: 1.2rem;
  }

  .detail-value.price {
    font-size: 1.5rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .php-btn {
    width: 100%;
    max-width: 300px;
  }

  .php-form {
    flex-direction: column;
    align-items: center;
  }

  /* Level display responsive */
  .level-display {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .level-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .level-arrow::before {
    content: "↓";
  }

  .level-image {
    width: 70px;
    height: 70px;
  }

  .level-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .checkout-header h1 {
    font-size: 2rem;
  }
  
  /* Responsividade para pagamento manual em telas pequenas */
  .manual-payment-notice {
    padding: 16px;
    margin: 16px 0;
  }
  
  .notice-icon {
    font-size: 1.8rem;
  }
  
  .notice-content h4 {
    font-size: 1.4rem;
  }
  
  .notice-content p {
    font-size: 1.1rem;
  }
  
  .detail-item {
    font-size: 1.2rem;
  }
  
  .order-summary {
    padding: 12px;
  }
  
  .order-summary h4 {
    font-size: 1.4rem;
  }
  
  .summary-value {
    font-size: 1.3rem;
  }

  .order-summary-card {
    padding: 1rem;
    margin: 0;
  }

  .detail-row {
    padding: 0.8rem;
  }

  .payment-section {
    padding: 1.5rem;
  }

  /* Level display mobile */
  .level-display {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .level-image {
    width: 60px;
    height: 60px;
  }

  .level-label {
    font-size: 1rem;
  }

  .level-value {
    font-size: 1rem;
  }

  .level-arrow {
    font-size: 1.2rem;
  }

  .service-type-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== CHECKOUT ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-summary-card {
  animation: fadeInUp 0.6s ease-out;
}

.detail-row {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.detail-row:nth-child(1) { animation-delay: 0.1s; }
.detail-row:nth-child(2) { animation-delay: 0.2s; }
.detail-row:nth-child(3) { animation-delay: 0.3s; }
.detail-row:nth-child(4) { animation-delay: 0.4s; }
.detail-row:nth-child(5) { animation-delay: 0.5s; }

/* ===== CHECKOUT LOADING STATES ===== */
.php-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.php-btn.loading {
  position: relative;
  color: transparent;
}

.php-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spinButton 1s linear infinite;
}

@keyframes spinButton {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ACCOUNT ORDERS GRID STYLES ===== */
.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.order-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ff4757);
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.order-id {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.order-date {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}

.order-service {
  margin-bottom: 1.5rem;
  text-align: center;
}

.order-levels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.1);
}

.order-levels .level-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.order-levels .level-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.order-levels .level-image:hover {
  transform: scale(1.05);
  border-color: rgba(220, 20, 60, 0.6);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.2);
}

.order-levels .level-label {
  color: #555;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05rem;
}

.order-levels .level-value {
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

.order-levels .level-arrow {
  color: #dc143c;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-details {
  margin-bottom: 1.5rem;
}

.order-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(248, 249, 250, 0.6);
  border-radius: 10px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(220, 20, 60, 0.1);
  transition: all 0.3s ease;
}

.order-details .detail-row:hover {
  background: rgba(220, 20, 60, 0.05);
  border-color: rgba(220, 20, 60, 0.2);
}

.order-details .detail-row:last-child {
  margin-bottom: 0;
}

.order-details .detail-label {
  font-weight: 500;
  color: #555;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
}

.order-details .detail-value {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.order-details .detail-value.price {
  font-size: 1.4rem;
  color: #dc143c;
  font-weight: 700;
}

.order-actions {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.order-actions .php-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  min-width: 140px;
}

.expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.expand-btn.expanded {
  background: #dc143c;
  color: white;
}

.expand-icon {
  transition: transform 0.3s ease;
}

.expand-btn.expanded .expand-icon {
  transform: rotate(180deg);
}

.order-details-expanded {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.order-details-expanded .detail-row {
  margin-bottom: 0.8rem;
  padding: 0.8rem;
  background: rgba(248, 249, 250, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(220, 20, 60, 0.05);
}

.order-details-expanded .detail-row:last-child {
  margin-bottom: 0;
}

.order-details-expanded .detail-label {
  font-size: 1rem;
  color: #666;
}

.order-details-expanded .detail-value {
  font-size: 1.1rem;
  color: #333;
}

/* ===== ACCOUNT ORDERS RESPONSIVE ===== */
@media (max-width: 768px) {
  .orders-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .order-card {
    padding: 1.5rem;
  }
  
  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .order-levels {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .order-levels .level-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }
  
  .order-levels .level-image {
    width: 60px;
    height: 60px;
  }
  
  .order-levels .level-value {
    font-size: 1.1rem;
  }
  
  .order-details .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.8rem;
  }
  
  .order-details .detail-label {
    font-size: 1rem;
  }
  
  .order-details .detail-value {
    font-size: 1.1rem;
  }
  
  .order-details .detail-value.price {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .orders-grid {
    gap: 1rem;
  }
  
  .order-card {
    padding: 1rem;
  }
  
  .order-levels {
    padding: 0.8rem;
  }
  
  .order-levels .level-image {
    width: 50px;
    height: 50px;
  }
  
  .order-levels .level-label {
    font-size: 0.9rem;
  }
  
  .order-levels .level-value {
    font-size: 1rem;
  }
  
  .order-levels .level-arrow {
    font-size: 1.2rem;
  }
  
  .order-actions .php-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    min-width: 120px;
  }
}

/* ===== ACCOUNT ORDERS ANIMATIONS ===== */
.order-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.order-card:nth-child(1) { animation-delay: 0.1s; }
.order-card:nth-child(2) { animation-delay: 0.2s; }
.order-card:nth-child(3) { animation-delay: 0.3s; }
.order-card:nth-child(4) { animation-delay: 0.4s; }
.order-card:nth-child(5) { animation-delay: 0.5s; }
.order-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== PAYMENT METHODS INTERFACE ===== */
.payment-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  position: relative;
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(220, 20, 60, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(220, 20, 60, 0.05), rgba(255, 71, 87, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-option:hover {
  border-color: rgba(220, 20, 60, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.payment-option:hover::before {
  opacity: 1;
}

.payment-method input[type="radio"]:checked + .payment-option {
  border-color: #dc143c;
  background: linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(255, 71, 87, 0.1));
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
}

.payment-method input[type="radio"]:checked + .payment-option::before {
  opacity: 1;
}

.payment-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #dc143c, #ff4757);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked + .payment-option .payment-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.payment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.payment-info h4 {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.payment-info p {
  margin: 0;
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
}

.payment-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.payment-method[data-method="pix"] .payment-badge {
  background: linear-gradient(45deg, #28a745, #20c997);
}

.payment-method[data-method="credit"] .payment-badge {
  background: linear-gradient(45deg, #17a2b8, #20c997);
}

.payment-method[data-method="debit"] .payment-badge {
  background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

/* Security Info */
.security-info {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 20, 60, 0.1);
  text-align: center;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-text {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Payment Actions */
.payment-actions {
  text-align: center;
  margin-top: 2rem;
}

.payment-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(45deg, #dc143c, #ff4757);
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.3rem;
  min-width: 250px;
  text-align: center;
  letter-spacing: 0.05rem;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.payment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
  background: linear-gradient(45deg, #ff4757, #dc143c);
}

.payment-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  font-size: 1.3rem;
  font-weight: 600;
}

.btn-amount {
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ===== PAYMENT METHODS RESPONSIVE ===== */
@media (max-width: 768px) {
  .payment-methods {
    gap: 0.8rem;
  }
  
  .payment-option {
    padding: 1.2rem;
    gap: 0.8rem;
  }
  
  .payment-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .payment-info h4 {
    font-size: 1.2rem;
  }
  
  .payment-info p {
    font-size: 1rem;
  }
  
  .payment-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .security-badges {
    gap: 0.5rem;
  }
  
  .security-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .security-text {
    font-size: 1rem;
  }
  
  .payment-btn {
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    min-width: 200px;
  }
  
  .btn-text {
    font-size: 1.2rem;
  }
  
  .btn-amount {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .payment-option {
    padding: 1rem;
    gap: 0.6rem;
  }
  
  .payment-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .payment-info h4 {
    font-size: 1.1rem;
  }
  
  .payment-info p {
    font-size: 0.9rem;
  }
  
  .payment-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  
  .security-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  .security-text {
    font-size: 0.9rem;
  }
  
  .payment-btn {
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    min-width: 180px;
  }
  
  .btn-text {
    font-size: 1.1rem;
  }
  
  .btn-amount {
    font-size: 1.3rem;
  }
}
